1 <?php
2 
3 namespace Elastica\Exception;
4 
5 /**
6  * General Elastica exception interface.
7  *
8  * @author Nicolas Ruflin <spam@ruflin.com>
9  */
10 interface ExceptionInterface extends \Throwable
11 {
12 }
13