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 invalid arguments are passed to a method.
11: *
12: * @phpstan-ignore class.implementsDeprecatedInterface
13: */
14: class BadMethodCallException extends \BadMethodCallException implements OpenSearchException
15: {
16: }
17: