master
<?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'; }