Interface IError

Description

Custom error type.

interface IError {
    message: string;
    name: string;
    type: ErrorType;
}

Implemented by

Properties

Properties

message: string

Description

The error message.

name: string

Description

The name of the error.

type: ErrorType

Description

The type of error.

Generated using TypeDoc