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