interface BatchError {
    code?: string;
    line?: null | number;
    message?: string;
    param?: null | string;
}

Properties

code?: string

An error code identifying the error type.

line?: null | number

The line number of the input file where the error occurred, if applicable.

message?: string

A human-readable message providing more details about the error.

param?: null | string

The name of the parameter that caused the error, if applicable.