17 lines
476 B
PHP
17 lines
476 B
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @see http://github.com/zendframework/zend-diactoros for the canonical source repository
|
|
* @copyright Copyright (c) 2015 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license https://github.com/zendframework/zend-diactoros/blob/master/LICENSE.md New BSD License
|
|
*/
|
|
|
|
namespace Zend\Diactoros\Exception;
|
|
|
|
/**
|
|
* Marker interface for package-specific exceptions.
|
|
*/
|
|
interface ExceptionInterface
|
|
{
|
|
}
|