Uses of Interface
net.bytebuddy.asm.Advice.ExceptionHandler
-
Packages that use Advice.ExceptionHandler Package Description net.bytebuddy.agent.builder An agent builder is used to easily implement load-time class-transformations using a Java agent.net.bytebuddy.asm 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.ExceptionHandler Modifier and Type Field Description private 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.ExceptionHandler Modifier and Type Method Description AgentBuilder.Transformer.ForAdvice
AgentBuilder.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.ExceptionHandler Constructor Description ForAdvice(Advice.WithCustomMapping advice, Advice.ExceptionHandler exceptionHandler, Assigner assigner, ClassFileLocator classFileLocator, AgentBuilder.PoolStrategy poolStrategy, AgentBuilder.LocationStrategy locationStrategy, java.util.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.ExceptionHandler Modifier and Type Class Description static class
Advice.ExceptionHandler.Default
Default implementations for commonly used exception handlers.static class
Advice.ExceptionHandler.Simple
A simple exception handler that returns a fixed stack manipulation.Fields in net.bytebuddy.asm declared as Advice.ExceptionHandler Modifier and Type Field Description private Advice.ExceptionHandler
Advice. exceptionHandler
The exception handler to apply.Methods in net.bytebuddy.asm with parameters of type Advice.ExceptionHandler Modifier and Type Method Description Advice
Advice. 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.ExceptionHandler Constructor Description Advice(Advice.Dispatcher.Resolved.ForMethodEnter methodEnter, Advice.Dispatcher.Resolved.ForMethodExit methodExit, Assigner assigner, Advice.ExceptionHandler exceptionHandler, Implementation delegate)
Creates a new advice.
-