File size: 519 Bytes
9ec6562 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
# SPDX-License-Identifier: MIT
class DeepgramApiKeyError(Exception):
"""
Base class for exceptions raised for a missing Deepgram API Key.
Attributes:
message (str): The error message describing the exception.
"""
def __init__(self, message: str):
super().__init__(message)
self.name = "DeepgramApiKeyError"
|