1: | <?php |
2: | |
3: | declare(strict_types=1); |
4: | |
5: | namespace OpenSearch\Exception; |
6: | |
7: | use OpenSearch\Common\Exceptions\OpenSearchException; |
8: | |
9: | /** |
10: | * An exception thrown when a runtime error occurs. |
11: | * |
12: | * @phpstan-ignore class.implementsDeprecatedInterface |
13: | */ |
14: | class RuntimeException extends \RuntimeException implements OpenSearchException |
15: | { |
16: | } |
17: |