Uses of Interface
net.bytebuddy.asm.Advice.ExceptionHandler
Packages that use Advice.ExceptionHandler
Package
Description
An agent builder is used to easily implement load-time class-transformations using a Java agent.
The ASM package contains classes that are meant for direct interaction with the ASM API.
-
Uses of Advice.ExceptionHandler in net.bytebuddy.agent.builder
Fields in net.bytebuddy.agent.builder declared as Advice.ExceptionHandlerModifier and TypeFieldDescriptionprivate final Advice.ExceptionHandler
AgentBuilder.Transformer.ForAdvice.exceptionHandler
The exception handler to register for the advice.Methods in net.bytebuddy.agent.builder with parameters of type Advice.ExceptionHandlerModifier and TypeMethodDescriptionAgentBuilder.Transformer.ForAdvice.withExceptionHandler
(Advice.ExceptionHandler exceptionHandler) Registers an exception handler for suppressed exceptions to use by the registered advice.Constructors in net.bytebuddy.agent.builder with parameters of type Advice.ExceptionHandlerModifierConstructorDescriptionprotected
ForAdvice
(Advice.WithCustomMapping advice, Advice.ExceptionHandler exceptionHandler, Assigner assigner, ClassFileLocator classFileLocator, AgentBuilder.PoolStrategy poolStrategy, AgentBuilder.LocationStrategy locationStrategy, List<AgentBuilder.Transformer.ForAdvice.Entry> entries) Creates a new advice transformer. -
Uses of Advice.ExceptionHandler in net.bytebuddy.asm
Classes in net.bytebuddy.asm that implement Advice.ExceptionHandlerModifier and TypeClassDescriptionstatic enum
Default implementations for commonly used exception handlers.static class
A simple exception handler that returns a fixed stack manipulation.Fields in net.bytebuddy.asm declared as Advice.ExceptionHandlerModifier and TypeFieldDescriptionprivate final Advice.ExceptionHandler
Advice.exceptionHandler
The exception handler to apply.Methods in net.bytebuddy.asm with parameters of type Advice.ExceptionHandlerModifier and TypeMethodDescriptionAdvice.withExceptionHandler
(Advice.ExceptionHandler exceptionHandler) Configures this advice to execute the given exception handler upon a suppressed exception.Constructors in net.bytebuddy.asm with parameters of type Advice.ExceptionHandlerModifierConstructorDescriptionprivate
Advice
(Advice.Dispatcher.Resolved.ForMethodEnter methodEnter, Advice.Dispatcher.Resolved.ForMethodExit methodExit, Assigner assigner, Advice.ExceptionHandler exceptionHandler, Implementation delegate) Creates a new advice.