interface ParseError {
    location: string;
    message: string;
    reason: string;
}

Implemented by

Properties

location: string

A description of the location the error occurred.

message: string

The full reason and location.

reason: string

The reason for the error.