1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace OpenSearch\Exception;
6:
7: /**
8: * Exception thrown when a 400 Bad Request HTTP error occurs for a Script Language Not Supported error.
9: */
10: class ScriptLangNotSupportedException extends BadRequestHttpException
11: {
12: }
13: