1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace OpenSearch\Exception;
6:
7: /**
8: * Exception thrown when a 500 Internal Server Error HTTP error occurs for No Shard Available.
9: */
10: class NoShardAvailableException extends InternalServerErrorHttpException
11: {
12: }
13: