14 lines
283 B
PHP
14 lines
283 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Xentral\Components\Backup\Exception;
|
||
|
|
|
||
|
|
use Xentral\Core\Exception\ComponentExceptionInterface;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Interface BackupExceptionInterface
|
||
|
|
*
|
||
|
|
* @package Xentral\Components\Backup\Exception
|
||
|
|
*/
|
||
|
|
interface BackupExceptionInterface extends ComponentExceptionInterface
|
||
|
|
{
|
||
|
|
}
|