Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| UnauthorizedException | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| __construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace BO\Zmscitizenapi\Exceptions; |
| 4 | |
| 5 | class UnauthorizedException extends \RuntimeException |
| 6 | { |
| 7 | public function __construct() |
| 8 | { |
| 9 | parent::__construct("unauthorized", 403); |
| 10 | } |
| 11 | } |