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
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, 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.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.
-