Interface TwingRuntimeError

interface TwingRuntimeError {
    location: TwingErrorLocation;
    message: string;
    name: "TwingRuntimeError";
    previous: any;
    rootMessage: string;
    source: TwingSource;
    stack?: string;
    appendMessage(message: string): void;
}

Hierarchy (view full)

Properties

message: string
name: "TwingRuntimeError"
previous: any
rootMessage: string
source: TwingSource
stack?: string

Methods