1 | <?php |
||
19 | class ModelConfigurationException extends DomainException |
||
20 | { |
||
21 | /** |
||
22 | * ModelConfigurationException constructor. |
||
23 | * |
||
24 | * @param EEM_Base $model |
||
25 | * @param string $message Describe what's misconfigured about this model (don't bother mentioning which model, |
||
26 | * that will be automatically added to the message based on the $model provided in the previous parameter). |
||
27 | * @param int $code |
||
28 | * @param Exception $previous |
||
29 | */ |
||
30 | public function __construct(EEM_Base $model, $message, $code = 0, Exception $previous = null) |
||
42 | } |
||
43 | // End of file ModelConfigurationException.php |
||
45 |