edu.isi.pegasus.planner.cluster
public class ClustererException extends Exception
| Constructor and Description |
|---|
ClustererException()
Constructs a
ClustererException with no detail
message. |
ClustererException(String message)
Constructs a
ClustererException with the specified detailed
message. |
ClustererException(String message,
Throwable cause)
Constructs a
ClustererException with the specified detailed
message and a cause. |
ClustererException(Throwable cause)
Constructs a
ClustererException with the
specified just a cause. |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic ClustererException()
ClustererException with no detail
message.public ClustererException(String message)
ClustererException with the specified detailed
message.message - is the detailled message.public ClustererException(String message, Throwable cause)
ClustererException with the specified detailed
message and a cause.message - is the detailled message.cause - is the cause (which is saved for later retrieval by the
Throwable.getCause() method). A null
value is permitted, and indicates that the cause is nonexistent or
unknown.public ClustererException(Throwable cause)
ClustererException with the
specified just a cause.cause - is the cause (which is saved for later retrieval by the
Throwable.getCause() method). A null
value is permitted, and indicates that the cause is nonexistent or
unknown.