7 lines
138 B
PHP
7 lines
138 B
PHP
|
<?php
|
||
|
namespace Rails\Exception;
|
||
|
|
||
|
class LengthException extends \LengthException implements ExceptionInterface
|
||
|
{
|
||
|
use ExceptionTrait;
|
||
|
}
|