*Add error constants

This commit is contained in:
Derrick Hammer 2022-08-04 23:38:44 -04:00
parent 8b17fbf3d2
commit 65b02ea1f3
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 3 additions and 0 deletions

View File

@ -6,3 +6,6 @@ export function errorExit(msg: string): void {
} }
export const ERR_NOT_READY = "NOT_READY"; export const ERR_NOT_READY = "NOT_READY";
export const ERR_INVALID_CHAIN = "INVALID_CHAIN";
export const ERR_ENDPOINT_INVALID = "ENDPOINT_INVALID";
export const ERR_METHOD_INVALID = "METHOD_INVALID";