| 1 | <?php |
||
| 5 | abstract class AbstractValidationException extends AbstractException implements ExceptionInterface, FieldExceptionInterface |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * AbstractFieldsException constructor. |
||
| 9 | * @param string $message |
||
| 10 | * @param string $code |
||
| 11 | */ |
||
| 12 | 5 | public function __construct($message, $code) |
|
| 17 | |||
| 18 | /** |
||
| 19 | * @return array |
||
| 20 | */ |
||
| 21 | 3 | public function toArray() |
|
| 33 | } |
||
| 34 |