internal-server-error.d.ts 249 B

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