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
Methods in net.bytebuddy.agent.builder with parameters of type Advice.ExceptionHandlerModifier and TypeMethodDescriptionprotected AgentBuilder.Transformer.ForAdviceAgentBuilder.Transformer.ForAdvice.make(Advice.WithCustomMapping advice, Advice.ExceptionHandler exceptionHandler, Assigner assigner, ClassFileLocator classFileLocator, AgentBuilder.PoolStrategy poolStrategy, AgentBuilder.LocationStrategy locationStrategy, List<AgentBuilder.Transformer.ForAdvice.Entry> entries, List<String> auxiliaries) Creates an advice transformer.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.ExceptionHandlerModifierConstructorDescriptionprotectedForAdvice(Advice.WithCustomMapping advice, Advice.ExceptionHandler exceptionHandler, Assigner assigner, ClassFileLocator classFileLocator, AgentBuilder.PoolStrategy poolStrategy, AgentBuilder.LocationStrategy locationStrategy, List<AgentBuilder.Transformer.ForAdvice.Entry> entries, List<String> auxiliaries) Creates a new advice transformer. -
Uses of Advice.ExceptionHandler in net.bytebuddy.asm
Classes in net.bytebuddy.asm that implement Advice.ExceptionHandlerModifier and TypeClassDescriptionstatic enumDefault implementations for commonly used exception handlers.static classA simple exception handler that returns a fixed stack manipulation.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.