Sequenzia/lib/Rails/Routing/Exception/NotFoundException.php
2013-10-02 11:14:53 -05:00

11 lines
249 B
PHP
Executable File

<?php
namespace Rails\Routing\Exception;
class NotFoundException extends \Rails\Exception\RuntimeException implements ExceptionInterface
{
protected $title = "Not found";
protected $status = 404;
protected $skip_info = true;
}