8 lines
154 B
PHP
8 lines
154 B
PHP
<?php
|
|
|
|
namespace app\core\exceptions;
|
|
|
|
class NotFoundException extends \Exception{
|
|
protected $code = 404;
|
|
protected $message = 'Page not found';
|
|
} |