export BaseError

interface BaseError {
    code?: number;
    message?: null | string;
    object?: null | string;
}

Properties

code?: number

The error code

message?: null | string

The error message

object?: null | string

The name of this object