Files
appointment_tool/error/SIMError.py
T
2022-02-28 20:09:02 +01:00

9 lines
168 B
Python

from enum import Enum
class SIMError(Enum):
SIM_DISABLED = "SIM_DISABLED"
CME_ERROR = "CME_ERROR"
STORAGE_ERROR = "STORAGE_ERROR"
TIMEOUT = "TIMEOUT"