Module org.refcodes.decoupling
Package org.refcodes.decoupling
Class DependencyException.DependenciesException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.refcodes.exception.AbstractException
org.refcodes.decoupling.DependencyException
org.refcodes.decoupling.DependencyException.DependenciesException
- All Implemented Interfaces:
Serializable,DependenciesAccessor,DependencyAccessor,org.refcodes.exception.ErrorCodeAccessor,org.refcodes.exception.Trap
- Direct Known Subclasses:
DependencyException.AliasDependenciesException,DependencyException.ClaimDependenciesException,DependencyException.FactoryDependenciesException,DependencyException.InitializerDependenciesException,DependencyInstanciationException
- Enclosing class:
- DependencyException
public abstract static class DependencyException.DependenciesException
extends DependencyException
implements DependenciesAccessor
The
DependencyException.DependenciesException is a DependencyException
containing additional related dependency.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.refcodes.decoupling.DependencyException
DependencyException.AliasDependenciesException, DependencyException.ClaimDependenciesException, DependencyException.DependenciesException, DependencyException.DependencyClaimException, DependencyException.FactoryDependenciesException, DependencyException.InitializerDependenciesExceptionNested classes/interfaces inherited from interface org.refcodes.decoupling.DependenciesAccessor
DependenciesAccessor.DependenciesBuilder<T,B extends DependenciesAccessor.DependenciesBuilder<T, B>>, DependenciesAccessor.DependenciesMutator<T>, DependenciesAccessor.DependenciesProperty<T> Nested classes/interfaces inherited from interface org.refcodes.decoupling.DependencyAccessor
DependencyAccessor.DependencyBuilder<T,B extends DependencyAccessor.DependencyBuilder<T, B>>, DependencyAccessor.DependencyMutator<T>, DependencyAccessor.DependencyProperty<T> Nested classes/interfaces inherited from interface org.refcodes.exception.ErrorCodeAccessor
org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B extends org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B>>, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeMutator, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeProperty -
Constructor Summary
ConstructorsConstructorDescriptionDependenciesException(Dependency<?> aDependency, Dependency<?>[] aDependencies, String aMessage) Instantiates a newDependencyException.DependenciesException.DependenciesException(Dependency<?> aDependency, Dependency<?>[] aDependencies, String aMessage, String aErrorCode) Instantiates a newDependencyException.DependenciesException.DependenciesException(Dependency<?> aDependency, Dependency<?>[] aDependencies, String aMessage, Throwable aCause) Instantiates a newDependencyException.DependenciesException.DependenciesException(Dependency<?> aDependency, Dependency<?>[] aDependencies, String aMessage, Throwable aCause, String aErrorCode) Instantiates a newDependencyException.DependenciesException.DependenciesException(Dependency<?> aDependency, Dependency<?>[] aDependencies, Throwable aCause) Instantiates a newDependencyException.DependenciesException.DependenciesException(Dependency<?> aDependency, Dependency<?>[] aDependencies, Throwable aCause, String aErrorCode) Instantiates a newDependencyException.DependenciesException. -
Method Summary
Modifier and TypeMethodDescriptionDependency<?>[]Retrieves theDependencydeclarations related to this exception.Methods inherited from class org.refcodes.decoupling.DependencyException
getDependencyMethods inherited from class org.refcodes.exception.AbstractException
getErrorCodeMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.refcodes.exception.Trap
toLocalizedMessage, toMessage, toShortLocalizedMessage, toShortMessage
-
Constructor Details
-
DependenciesException
public DependenciesException(Dependency<?> aDependency, Dependency<?>[] aDependencies, String aMessage, String aErrorCode) Instantiates a newDependencyException.DependenciesException.- Parameters:
aDependency- TheDependencydeclaration causing this exception.aDependencies- theDependencydeclarations related to this exception.aMessage- The aMessage describing this exception.aErrorCode- The error code identifying this exception.
-
DependenciesException
public DependenciesException(Dependency<?> aDependency, Dependency<?>[] aDependencies, String aMessage, Throwable aCause, String aErrorCode) Instantiates a newDependencyException.DependenciesException.- Parameters:
aDependency- TheDependencydeclaration causing this exception.aDependencies- theDependencydeclarations related to this exception.aMessage- The aMessage describing this exception.aCause- TheThrowable(Exception) causing this exception.aErrorCode- The error code identifying this exception.
-
DependenciesException
public DependenciesException(Dependency<?> aDependency, Dependency<?>[] aDependencies, String aMessage, Throwable aCause) Instantiates a newDependencyException.DependenciesException.- Parameters:
aDependency- TheDependencydeclaration causing this exception.aDependencies- theDependencydeclarations related to this exception.aMessage- The aMessage describing this exception.aCause- theThrowable(Exception) causing this exception.
-
DependenciesException
public DependenciesException(Dependency<?> aDependency, Dependency<?>[] aDependencies, String aMessage) Instantiates a newDependencyException.DependenciesException.- Parameters:
aDependency- TheDependencydeclaration causing this exception.aDependencies- theDependencydeclarations related to this exception.aMessage- The aMessage describing this exception.
-
DependenciesException
public DependenciesException(Dependency<?> aDependency, Dependency<?>[] aDependencies, Throwable aCause, String aErrorCode) Instantiates a newDependencyException.DependenciesException.- Parameters:
aDependency- TheDependencydeclaration causing this exception.aDependencies- theDependencydeclarations related to this exception.aCause- TheThrowable(Exception) causing this exception.aErrorCode- The error code identifying this exception.
-
DependenciesException
public DependenciesException(Dependency<?> aDependency, Dependency<?>[] aDependencies, Throwable aCause) Instantiates a newDependencyException.DependenciesException.- Parameters:
aDependency- TheDependencydeclaration causing this exception.aDependencies- theDependencydeclarations related to this exception.aCause- TheThrowable(Exception) causing this exception.
-
-
Method Details
-
getDependencies
Retrieves theDependencydeclarations related to this exception.- Specified by:
getDependenciesin interfaceDependenciesAccessor- Returns:
- The unsatisfied
Dependencydeclarations
-