Spaces:
Running
Running
File size: 322 Bytes
0a92159 | 1 2 3 4 5 6 7 8 9 10 11 | from typing import Any
class CommandError(Exception):
def __init__(self, status_code: int, error_code: str, message: str, details: Any = None):
self.status_code = status_code
self.error_code = error_code
self.message = message
self.details = details
super().__init__(message)
|