1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace OpenSearch\Exception;
6:
7: /**
8: * Interface for OpenSearch exceptions.
9: */
10: interface OpenSearchExceptionInterface extends \Throwable
11: {
12: }
13: