fix: enhance file upload error handling and update base error class (#12132)

Signed-off-by: -LAN- <laipz8200@outlook.com>
This commit is contained in:
-LAN-
2024-12-26 23:31:29 +08:00
committed by GitHub
parent e765d8e69e
commit be7877f526
2 changed files with 20 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
from typing import Optional
class BaseServiceError(Exception):
class BaseServiceError(ValueError):
def __init__(self, description: Optional[str] = None):
self.description = description