9 lines
229 B
PHP
Executable File
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;
|
|
} |