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