-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrings.js
More file actions
30 lines (22 loc) · 1.13 KB
/
Copy pathstrings.js
File metadata and controls
30 lines (22 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
© Copyright 2023-2023 E Reynolds, Inc. All rights reserved.
This program is confidential and proprietary to E Reynolds, and
may not be copied, reproduced, modified, disclosed to others, published or used,
in whole or in part, without the express prior written permission.
*/
export const ERROR = 'ERROR:';
export const ERROR_BAD_REQUEST = 'ERROR: Bad request';
export const ERROR_CATCH = 'ERROR: Caught error';
export const ERROR_NOT_FOUND = 'ERROR: Failed to find';
export const ERROR_USER_EXISTS = 'ERROR: User already exists';
export const ERROR_BAD_PASSWORD = 'ERROR: Incorrect password';
export const ERROR_INVALID_PASSWORD = 'ERROR: Password invalid';
export const ERROR_INVALID_AUTH = 'ERROR: Auth invalid';
export const ERROR_NOT_AUTHORIZED = 'ERROR: Not Authorized';
export const ERROR_GENERAL = 'ERROR: General error';
export const ERROR_INVALID_INPUT = 'ERROR: Invalid input data';
export const ERROR_TOKEN_CREATE = 'ERROR: Failed to create token';
export const INFO = 'INFO:';
export const SUCCESS = 'SUCCESS: ';
export const USER_LOGGED_OUT = 'User logged out';
export const SPACER = '===============================';