| 1 | <?php |
||
| 13 | class NotFoundException extends ClientException { |
||
| 14 | /** |
||
| 15 | * Initialize a {@link NotFoundException}. |
||
| 16 | * |
||
| 17 | * @param string $message The error message or a one word resource name. |
||
| 18 | * @param string $description A longer description for the error. |
||
| 19 | */ |
||
| 20 | 16 | public function __construct($message = 'Page', $description = null) { |
|
| 27 | } |
||
| 28 |