Package com.ibm.dbb.dependency
Class DependencyException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.dbb.dependency.DependencyException
-
- All Implemented Interfaces:
java.io.Serializable
public class DependencyException extends java.lang.Exception
Throw when a failure encounters during dependency resolution- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DependencyException()
Construct a new exception without a detail message.DependencyException(java.lang.String message)
Constructs a new exception with the specified detail messageDependencyException(java.lang.String message, java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.DependencyException(java.lang.Throwable cause)
Constructs a new exception with the specified cause.
-
-
-
Constructor Detail
-
DependencyException
public DependencyException()
Construct a new exception without a detail message.
-
DependencyException
public DependencyException(java.lang.String message)
Constructs a new exception with the specified detail messageNote that the detail message associated with
cause
is not automatically incorporated in this exception's detail message.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).
-
DependencyException
public DependencyException(java.lang.Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
DependencyException
public DependencyException(java.lang.String message, java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.Note that the detail message associated with
cause
is not automatically incorporated in this exception's detail message.- 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). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-