interface Exception {
    code: string;
    data: any;
    message: string;
    source?: string;
    type: "error" | "warning";
}

Properties

code: string
data: any
message: string
source?: string
type: "error" | "warning"

Generated using TypeDoc