ge-tool/backend/services/nas_api/exceptions.py
2025-12-10 13:41:43 +07:00

20 lines
362 B
Python
Executable File

"""
NAS API Exceptions
Custom exceptions for NAS operations.
"""
class NASAuthenticationError(Exception):
"""Raised when NAS authentication fails"""
pass
class NASConnectionError(Exception):
"""Raised when NAS connection fails"""
pass
class NASAPIError(Exception):
"""Raised when NAS API returns an error"""
pass