| 1 | <?php |
||
| 8 | class NotFoundException extends ApiException |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var integer |
||
| 12 | */ |
||
| 13 | protected $statusCode; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param string $message The internal exception message |
||
| 17 | * @param \Exception $previous The previous exception |
||
| 18 | * @param integer $code The internal exception code |
||
| 19 | */ |
||
| 20 | public function __construct($message = null, \Exception $previous = null, $code = 0) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return integer |
||
| 29 | */ |
||
| 30 | public function getStatusCode() |
||
| 34 | } |
||
| 35 |