Interface AssertionError

アサーションエラー。 エンジンが想定しない状態に陥った場合にthrowされる。メソッドの引数が正しくない場合などもこのエラーがthrowされる。

interface AssertionError {
    cause?: any;
    message: string;
    name: "AssertionError";
    stack?: string;
}

Hierarchy (view full)

Properties

cause?: any
message: string
name: "AssertionError"
stack?: string