mirror of
https://github.com/not-lucky/GeminiKeyManagement.git
synced 2025-12-06 08:44:01 +05:30
better format; using ruff now
This commit is contained in:
@@ -6,13 +6,15 @@ Defines domain-specific exceptions for:
|
||||
- API operation constraints
|
||||
"""
|
||||
|
||||
|
||||
class TermsOfServiceNotAcceptedError(Exception):
|
||||
"""Indicates unaccepted Terms of Service for critical API operations.
|
||||
|
||||
|
||||
Attributes:
|
||||
message (str): Human-readable error description
|
||||
url (str): URL for Terms of Service acceptance portal
|
||||
"""
|
||||
|
||||
def __init__(self, message, url):
|
||||
self.message = message
|
||||
self.url = url
|
||||
|
||||
Reference in New Issue
Block a user