AutoBE
    Preparing search index...

    Unexpected exception during compilation process.

    Represents cases where the compilation process encountered an unexpected runtime error or system exception. These cases indicate potential bugs in the compiler implementation that should be investigated and reported.

    interface IException {
        error: unknown;
        type: "exception";
    }
    Index

    Properties

    Properties

    error: unknown

    The raw error or exception that occurred during compilation.

    Contains the original error object or exception details for debugging purposes. This information helps developers identify the root cause of unexpected compilation failures and improve system reliability.

    type: "exception"

    Discriminator indicating compilation exception.