Files
FACULTATE-KNOW_YOUR_FOOD/knowyourfood/core/exceptions/NotFoundException.php
T

8 lines
154 B
PHP

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