java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.avaje.inject.aop.InvocationException
- All Implemented Interfaces:
Serializable
Exception occurring during method interception.
When using aspects and MethodInterceptor
any throwable that is undeclared on the
method is caught and re-throw as an InvocationException.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvocationException
(String message) Create with a given cause.InvocationException
(String message, Throwable cause) Create with a given message and cause.InvocationException
(Throwable cause) Create with a given cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvocationException
Create with a given cause. -
InvocationException
Create with a given cause. -
InvocationException
Create with a given message and cause.
-