Exception.d.ts 238 Bytes
Newer Older
Hanadi's avatar
Hanadi committed
1
2
3
4
5
6
7
import { ExceptionCode } from "./ExceptionCode";
export declare class Exception extends Error {
    code: ExceptionCode;
    description?: string;
    name: string;
    constructor(code: ExceptionCode, description: string | undefined);
}