for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Graze\ArrayFilter\Exception;
use Exception;
class UnknownPropertyDefinitionException extends Exception
{
public function __construct($property, $message = '', Exception $e = null)
$message = "Unknown property definition: $property. " . $message;
parent::__construct($message, 0, $e);
}