12 lines
202 B
PHP
12 lines
202 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Xentral\Modules\Datanorm\Exception;
|
||
|
|
|
||
|
|
use RuntimeException;
|
||
|
|
|
||
|
|
final class FileSystemException extends RuntimeException implements DatanormExceptionInterface
|
||
|
|
{
|
||
|
|
}
|