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