10 lines
191 B
PHP
10 lines
191 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Xentral\Components\Exporter\Exception;
|
||
|
|
|
||
|
|
use Xentral\Core\Exception\ComponentExceptionInterface;
|
||
|
|
|
||
|
|
interface ExporterExceptionInterface extends ComponentExceptionInterface
|
||
|
|
{
|
||
|
|
}
|