All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.avaje.inject.aop.InvocationException-e Maven / Gradle / Ivy

There is a newer version: 10.6-javax
Show newest version
package io.avaje.inject.aop;

/**
 * Represents an exception occurring during method interception.
 * 

* When using aspects and {@link MethodInterceptor} any throwable that is undeclared on the * method is caught and re-thrown as an InvocationException. */ public class InvocationException extends RuntimeException { /** * Create with a given cause. */ public InvocationException(String message) { super(message); } /** * Create with a given cause. */ public InvocationException(Throwable cause) { super(cause); } /** * Create with a given message and cause. */ public InvocationException(String message, Throwable cause) { super(message, cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy