This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
Sequenzia/lib/Rails/ActionController/Exception/UnknownActionException.php

11 lines
268 B
PHP
Raw Normal View History

2013-10-02 18:14:53 +02:00
<?php
namespace Rails\ActionController\Exception;
class UnknownActionException extends \Rails\Exception\RuntimeException implements ExceptionInterface
{
protected $title = 'Unknown action';
protected $status = 404;
protected $skip_info = true;
}