Class ComponentNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.axonframework.common.configuration.ComponentNotFoundException
- All Implemented Interfaces:
Serializable
- Since:
- 5.0.0
- Author:
- Steven van Beelen, Mitchell Herrijgers
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionComponentNotFoundException(Class<?> type, String name) Constructs aComponentNotFoundExceptionwith a default message describing aComponentcouldn't be found for the giventypeandname. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ComponentNotFoundException
Constructs aComponentNotFoundExceptionwith a default message describing aComponentcouldn't be found for the giventypeandname.- Parameters:
type- The type of the component that could not be found, typically an interface.name- The name of the component that could not be found, potentiallynullwhen unimportant.
-