Sequenzia/lib/Rails/Routing/Exception/NotFoundException.php

11 lines
249 B
PHP
Raw Normal View History

2013-10-02 18:14:53 +02:00
<?php
namespace Rails\Routing\Exception;
class NotFoundException extends \Rails\Exception\RuntimeException implements ExceptionInterface
{
protected $title = "Not found";
protected $status = 404;
protected $skip_info = true;
}