monitor-error.d.ts 185 B

12345
  1. import { CustomError } from './custom-error';
  2. export declare class MonitorError extends CustomError {
  3. private static ERROR_MESSAGE;
  4. constructor(errorCode: any, message: any);
  5. }