10 lines
193 B
PHP
10 lines
193 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Xentral\Components\Sanitizer\Exception;
|
||
|
|
|
||
|
|
use Xentral\Core\Exception\ComponentExceptionInterface;
|
||
|
|
|
||
|
|
interface SanitizerExceptionInterface extends ComponentExceptionInterface
|
||
|
|
{
|
||
|
|
}
|