12 lines
227 B
PHP
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;
|
|
}
|