Files
datatable.directory/porklib/Exceptions/RuntimeException.php
T
2018-07-08 17:34:50 +02:00

12 lines
227 B
PHP

<?php
namespace MightyPork\Exceptions;
/**
* Custom exception that happens rarely and does not need to be handled explicitly.
*/
abstract class RuntimeException extends \RuntimeException
{
use ExceptionConstructorTrait;
}