not-found-error.d.ts 205 B

123456
  1. import { CustomError } from './custom-error';
  2. export declare class NotFoundError extends CustomError {
  3. private static ERROR_CODE;
  4. private static ERROR_MESSAGE;
  5. constructor(userMessage: any);
  6. }