| 1 | <?php |
||
| 8 | class RequestValidateException extends \Exception |
||
| 9 | { |
||
| 10 | protected $request; |
||
| 11 | |||
| 12 | protected $errorCollection = []; |
||
| 13 | |||
| 14 | 1 | public function __construct( |
|
| 25 | |||
| 26 | public function getRequest() : Request |
||
| 30 | |||
| 31 | public function getErrorCollection() : array |
||
| 35 | |||
| 36 | public function getFirstError(): string |
||
| 40 | } |
||
| 41 |