datatable.directory codebase https://datatable.directory/
datatable.directory/porklib/Exceptions/RuntimeException.php

12 lines
227 B

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