import { ErrorCode } from './ErrorCode'; export declare class BasicException { private static readonly ErrorMessageMapper; protected exceptionCode: ErrorCode; protected msg: string; constructor(exceptionCode: number); getCode(): ErrorCode; private check; getMsg(): string; toString(): string; } export declare class ExceptionUtil { static build(code: number | string): any; private static parseException; }