Frida Docs Unified
    Preparing search index...

    Interface ExceptionDetails

    interface ExceptionDetails {
        address: NativePointer;
        context: CpuContext;
        memory?: ExceptionMemoryDetails;
        nativeContext: NativePointer;
        type: ExceptionType;
    }
    Index

    Properties

    address: NativePointer

    Address where the exception occurred.

    context: CpuContext

    CPU registers. You may also update register values by assigning to these keys.

    Memory operation details, if relevant.

    nativeContext: NativePointer

    Address of the OS and architecture-specific CPU context struct.

    This is only exposed as a last resort for edge-cases where context isn’t providing enough details. We would however discourage using this and rather submit a pull-request to add the missing bits needed for your use-case.

    The kind of exception that occurred.