11 lines
170 B
PHP
11 lines
170 B
PHP
|
|
<?php
|
||
|
|
declare(strict_types = 1);
|
||
|
|
|
||
|
|
namespace DASPRiD\Enum\Exception;
|
||
|
|
|
||
|
|
use Exception;
|
||
|
|
|
||
|
|
final class ExpectationException extends Exception implements ExceptionInterface
|
||
|
|
{
|
||
|
|
}
|