Package org.axonframework.common.infra
Class ComponentDescriptorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.axonframework.common.AxonException
org.axonframework.common.AxonNonTransientException
org.axonframework.common.infra.ComponentDescriptorException
- All Implemented Interfaces:
Serializable
Exception indicating that an error occurred in the component description process. This problem prevents the component
structure from being properly described or rendered.
- Since:
- 5.0.0
- Author:
- Mateusz Nowak
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionComponentDescriptorException(String message) Initializes the exception using the givenmessage.ComponentDescriptorException(String message, Throwable cause) Initializes the exception using the givenmessageandcause. -
Method Summary
Methods inherited from class org.axonframework.common.AxonNonTransientException
isCauseOfMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ComponentDescriptorException
Initializes the exception using the givenmessage.- Parameters:
message- The message describing the exception.
-
ComponentDescriptorException
Initializes the exception using the givenmessageandcause.- Parameters:
message- The message describing the exception.cause- The underlying cause of the exception.
-