AVP 3DWS Deck Documentation
    Preparing search index...

    Type Alias DeckExceptionEvent

    Event that fires when an unrecoverable error occurred.

    CustomEvent of type exception with detail { code: DeckCustomErrorCode, reason: string } where reason is an optional custom error message. Additionally, the event will

    • contain the originally thrown error object of type Error | AggregateError
    • implement properties of ErrorEvent
    .addEventListener('exception', (event) =>
    console.log(`An unrecoverable error exception occurred. The error reason is ${event.detail.reason} with message: ${event.detail.message}`)
    )
    type DeckExceptionEvent = {
        detail: DeckEventDetail;
        error: Error;
        type: "exception";
    }
    Index

    Properties

    Properties

    error: Error
    type: "exception"