1: | <?php |
2: | |
3: | |
4: | declare(strict_types=1); |
5: | |
6: | /** |
7: | * Copyright OpenSearch Contributors |
8: | * SPDX-License-Identifier: Apache-2.0 |
9: | * |
10: | * OpenSearch PHP client |
11: | * |
12: | * @link https://github.com/opensearch-project/opensearch-php/ |
13: | * @copyright Copyright (c) Elasticsearch B.V (https://www.elastic.co) |
14: | * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0 |
15: | * @license https://www.gnu.org/licenses/lgpl-2.1.html GNU Lesser General Public License, Version 2.1 |
16: | * |
17: | * Licensed to Elasticsearch B.V under one or more agreements. |
18: | * Elasticsearch B.V licenses this file to you under the Apache 2.0 License or |
19: | * the GNU Lesser General Public License, Version 2.1, at your option. |
20: | * See the LICENSE file in the project root for more information. |
21: | */ |
22: | |
23: | namespace OpenSearch\Common\Exceptions; |
24: | |
25: | class AuthenticationConfigException extends \RuntimeException implements OpenSearchException |
26: | { |
27: | } |
28: |