1<?php
2
3namespace Doctrine\Instantiator\Exception;
4
5use Throwable;
6
7/**
8 * Base exception marker interface for the instantiator component
9 */
10interface ExceptionInterface extends Throwable
11{
12}
13