lit-securities-utility
Version:
A utility package for securities applications
16 lines (15 loc) • 486 B
TypeScript
/**
* @ignore
*
* @module ErrorMessages
* Collection of error messages used throughout the security utility
*/
/**
* Error message displayed when security master URL is missing or invalid
* @example
* ```typescript
* throw new Error(INVALID_SECURITY_MASTER_URL);
* ```
*/
export declare const INVALID_SECURITY_MASTER_URL = "Invalid or No Security master URL provided";
export declare const SECURITY_MASTER_NOT_INITIALIZED = "Security master isn't downloaded or initialized";