3d7648efa0c991b3c6dbc33d15cbfed7bfa06b22
[GitHub/WoltLab/WCF.git] /
1 <?php
2
3 /**
4 * @see https://github.com/laminas/laminas-diactoros for the canonical source repository
5 * @copyright https://github.com/laminas/laminas-diactoros/blob/master/COPYRIGHT.md
6 * @license https://github.com/laminas/laminas-diactoros/blob/master/LICENSE.md New BSD License
7 */
8
9 declare(strict_types=1);
10
11 namespace Laminas\Diactoros\Exception;
12
13 use Throwable;
14
15 /**
16 * Marker interface for package-specific exceptions.
17 */
18 interface ExceptionInterface extends Throwable
19 {
20 }