Type Alias ErrorData

type ErrorData = {
    qErrorDataCode?: ErrorDataCode;
    qErrorString?: string;
    qLine?: string;
    qLineEnd?: string;
    qMessage?: ProgressMessage;
}
Index

Properties

qErrorDataCode?: ErrorDataCode

Type of the error messages.

One of:

  • EDC_ERROR
  • EDC_WARNING
  • EDC_CIRCULAR_REFERENCE
qErrorString?: string

Detailed information about the error message.

qLine?: string

Script statement where the error occurs.

qLineEnd?: string

Line termination characters.

qMessage?: ProgressMessage