Class DependencyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.github.devmix.process.acto.exceptions.DependencyException
- All Implemented Interfaces:
Serializable
Exception thrown to indicate a problem with dependency resolution during lifecycle operations.
- Author:
- Sergey Grachev
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDependencyException(String message) Constructs a newDependencyExceptionwith the specified detail message.DependencyException(String message, Throwable cause) Constructs a newDependencyExceptionwith the specified detail message and 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
-
DependencyException
Constructs a newDependencyExceptionwith the specified detail message.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method)
-
DependencyException
Constructs a newDependencyExceptionwith the specified detail message and cause.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method)cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-