Interface ErrorLike

interface ErrorLike {
    cause?: any;
    message: string;
    name: string;
    stack?: string;
}

Hierarchy (view full)

Properties

cause?: any
message: string
name: string
stack?: string