mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
7 lines
319 B
TypeScript
7 lines
319 B
TypeScript
export const ERROR_CODES: Record<string, string> = {
|
|
UNAUTHORIZED: 'You must be logged in to access this resource',
|
|
USER_FETCH_FAILED: 'An error occurred while fetching your user account',
|
|
SUBSCRIPTION_FETCH_FAILED: 'An error occurred while fetching your subscription',
|
|
UNKNOWN: 'An unknown error occurred',
|
|
};
|