Package org.axonframework.common
Class AxonConfigurationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.axonframework.common.AxonException
org.axonframework.common.AxonNonTransientException
org.axonframework.common.AxonConfigurationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
PropertyAccessException,UnsupportedHandlerException
Exception indicating that a configuration error has been made in the Axon configuration. This problem prevents the
application from operating properly.
- Since:
- 0.7
- Author:
- Allard Buijze
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAxonConfigurationException(String message) Initializes the exception using the givenmessage.AxonConfigurationException(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
-
AxonConfigurationException
Initializes the exception using the givenmessage.- Parameters:
message- The message describing the exception
-
AxonConfigurationException
Initializes the exception using the givenmessageandcause.- Parameters:
message- The message describing the exceptioncause- The underlying cause of the exception
-