1 | <?php |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
2 | |||
3 | declare(strict_types=1); |
||
4 | |||
5 | namespace Gewaer\Exception; |
||
6 | |||
7 | class ModelException extends Exception |
||
8 | { |
||
9 | protected $httpCode = Response::NOT_ACCEPTABLE; |
||
10 | protected $httpMessage = 'Not Acceptable'; |
||
11 | protected $data; |
||
12 | } |
||
13 |