src/Exceptions/PageNotFoundException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Aol\Atc\Exceptions;

use Aol\Atc\Exception;

class PageNotFoundException extends Exception
{
    protected $data = ['status' => 'error', 'message' => 'page not found'];
    protected $http_code = 404;
    protected $view = 'errors/404';
}