mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-01-05 08:32:53 +01:00
11 lines
182 B
PHP
11 lines
182 B
PHP
<?php
|
|
declare(strict_types = 1);
|
|
|
|
namespace DASPRiD\Enum\Exception;
|
|
|
|
use Exception;
|
|
|
|
final class UnserializeNotSupportedException extends Exception implements ExceptionInterface
|
|
{
|
|
}
|