datatable.directory codebase
https://datatable.directory/
12 lines
227 B
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;
|
||
|
}
|