|
@@ -20,7 +20,9 @@ class ERROR_MESSAGES(str, Enum):
|
|
|
def __str__(self) -> str:
|
|
|
return super().__str__()
|
|
|
|
|
|
- DEFAULT = lambda err="": f"Something went wrong :/\n[ERROR: {err if err else ''}]"
|
|
|
+ DEFAULT = (
|
|
|
+ lambda err="": f'{"Something went wrong :/" if err == "" else "[ERROR: " + err + "]"}'
|
|
|
+ )
|
|
|
ENV_VAR_NOT_FOUND = "Required environment variable not found. Terminating now."
|
|
|
CREATE_USER_ERROR = "Oops! Something went wrong while creating your account. Please try again later. If the issue persists, contact support for assistance."
|
|
|
DELETE_USER_ERROR = "Oops! Something went wrong. We encountered an issue while trying to delete the user. Please give it another shot."
|