Files
documenso/packages/ee/server-only/limits/errors.ts
2023-11-06 13:02:19 +11:00

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',
};