5 lines
104 B
Python
5 lines
104 B
Python
from enum import StrEnum
|
|
|
|
|
|
class CustomError(StrEnum):
|
|
LLM_EXCEPTION = "Moo? (Something went wrong)" |