mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-26 16:57:23 +01:00
5 lines
181 B
Python
5 lines
181 B
Python
class ApiKeyNotDefinedError(Exception):
|
|
def __init__(self, env_key: str):
|
|
self.env_key = env_key
|
|
super().__init__(f"API Key has not been configured: {env_key}")
|