Interface ErrorModel

interface ErrorModel {
    message: string;
    name: string;
    reference?: string;
    severity?: "error" | "warning" | "info";
    stack?: string;
    type?: string;
}

Hierarchy (view full)

Properties

message: string
name: string
reference?: string
severity?: "error" | "warning" | "info"
stack?: string
type?: string