| 1 | <?php |
||
| 18 | final class NotFoundException extends NotFoundHttpException implements RestExceptionInterface |
||
| 19 | { |
||
| 20 | use RestExceptionTrait; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Constructor |
||
| 24 | * |
||
| 25 | * @param string $message Error message |
||
| 26 | * @param \Exception $prev Previous Exception |
||
| 27 | */ |
||
| 28 | 1 | public function __construct($message = "Not Found", $prev = null) |
|
| 32 | } |
||
| 33 |