Exceptions¶
-
class
revenge.native_exception.NativeException(context, backtrace=None, type=None, memory_operation=None, memory_address=None)[source]¶ Bases:
object-
TYPES= ['abort', 'access-violation', 'illegal-instruction', 'arithmetic', 'breakpoint', 'system']¶
-
property
address¶ Address of this exception.
- Type
int
-
property
memory_address¶ Address of memory exception.
- Type
int
-
property
memory_operation¶ Type of memory operation performed at exception.
Enum: read, write, execute
- Type
str
-
property
type¶ What type of native exception? One of abort, access-violation, illegal-instruction, arithmetic, breakpoint, system
- Type
str
-