import { ExceptionCode } from "./ExceptionCode"; export declare class Exception extends Error { code: ExceptionCode; description?: string; name: string; constructor(code: ExceptionCode, description: string | undefined); }