src/Db/Exception/ExceptionInterface.php
<?php
/**
* Phossa Project
*
* PHP version 5.4
*
* @category Library
* @package Phossa2\Db
* @copyright Copyright (c) 2016 phossa.com
* @license http://mit-license.org/ MIT License
* @link http://www.phossa.com/
*/
/*# declare(strict_types=1); */
namespace Phossa2\Db\Exception;
use Phossa2\Shared\Exception\ExceptionInterface as PhossaExceptionInterface;
/**
* Exception marker for Phossa2\Db
*
* @package Phossa2\Db
* @author Hong Zhang <phossa@126.com>
* @see \Phossa2\Shared\Exception\ExceptionInterface
* @version 2.0.0
* @since 2.0.0 added
*/
interface ExceptionInterface extends PhossaExceptionInterface
{
}