fix(core/errors): change base class of custom exceptions to ValueError (#11955)

Signed-off-by: -LAN- <laipz8200@outlook.com>
This commit is contained in:
-LAN- 2024-12-22 10:41:34 +08:00 committed by GitHub
parent dd0e81d094
commit 5db8addcc6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,7 @@
from typing import Optional
class LLMError(Exception):
class LLMError(ValueError):
"""Base class for all LLM exceptions."""
description: Optional[str] = None
@ -16,7 +16,7 @@ class LLMBadRequestError(LLMError):
description = "Bad Request"
class ProviderTokenNotInitError(Exception):
class ProviderTokenNotInitError(ValueError):
"""
Custom exception raised when the provider token is not initialized.
"""
@ -27,7 +27,7 @@ class ProviderTokenNotInitError(Exception):
self.description = args[0] if args else self.description
class QuotaExceededError(Exception):
class QuotaExceededError(ValueError):
"""
Custom exception raised when the quota for a provider has been exceeded.
"""
@ -35,7 +35,7 @@ class QuotaExceededError(Exception):
description = "Quota Exceeded"
class AppInvokeQuotaExceededError(Exception):
class AppInvokeQuotaExceededError(ValueError):
"""
Custom exception raised when the quota for an app has been exceeded.
"""
@ -43,7 +43,7 @@ class AppInvokeQuotaExceededError(Exception):
description = "App Invoke Quota Exceeded"
class ModelCurrentlyNotSupportError(Exception):
class ModelCurrentlyNotSupportError(ValueError):
"""
Custom exception raised when the model not support
"""
@ -51,7 +51,7 @@ class ModelCurrentlyNotSupportError(Exception):
description = "Model Currently Not Support"
class InvokeRateLimitError(Exception):
class InvokeRateLimitError(ValueError):
"""Raised when the Invoke returns rate limit error."""
description = "Rate Limit Error"