7 lines
197 B
PHP
7 lines
197 B
PHP
|
<?php
|
||
|
namespace Rails\ActionController\Exception;
|
||
|
|
||
|
class DoubleRenderException extends Rails\Exception\LogicException implements ExceptionInterface
|
||
|
{
|
||
|
protected $title = 'Double Render Error';
|
||
|
}
|