10 lines
195 B
PHP
10 lines
195 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Xentral\Components\Filesystem\Exception;
|
||
|
|
|
||
|
|
use Xentral\Core\Exception\ComponentExceptionInterface;
|
||
|
|
|
||
|
|
interface FilesystemExceptionInterface extends ComponentExceptionInterface
|
||
|
|
{
|
||
|
|
}
|