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

9 lines
229 B
PHP
Executable File

<?php
namespace Rails\ActiveRecord\Exception;
class RecordNotFoundException extends \Rails\Exception\RuntimeException implements ExceptionInterface
{
protected $title = 'Record not found';
protected $status = 404;
}