1 | <?php |
||
21 | abstract class FormzException extends \Exception |
||
22 | { |
||
23 | /** |
||
24 | * Creates a new exception instance. |
||
25 | * |
||
26 | * The code will be fetched from the calling method's `@code` property. |
||
27 | * |
||
28 | * @param string $message |
||
29 | * @param array $arguments |
||
30 | * @return FormzException |
||
31 | */ |
||
32 | final protected static function getNewExceptionInstance($message, array $arguments = []) |
||
44 | } |
||
45 |