Package edu.isi.pegasus.planner.cluster
Class ClustererException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- edu.isi.pegasus.planner.cluster.ClustererException
-
- All Implemented Interfaces:
java.io.Serializable
public class ClustererException extends java.lang.Exception
The baseclass of the exception that is thrown by all Clusterers. It is a checked exception.- Version:
- $Revision$
- Author:
- Karan Vahi
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClustererException()
Constructs aClustererException
with no detail message.ClustererException(java.lang.String message)
Constructs aClustererException
with the specified detailed message.ClustererException(java.lang.String message, java.lang.Throwable cause)
Constructs aClustererException
with the specified detailed message and a cause.ClustererException(java.lang.Throwable cause)
Constructs aClustererException
with the specified just a cause.
-
-
-
Constructor Detail
-
ClustererException
public ClustererException()
Constructs aClustererException
with no detail message.
-
ClustererException
public ClustererException(java.lang.String message)
Constructs aClustererException
with the specified detailed message.- Parameters:
message
- is the detailled message.
-
ClustererException
public ClustererException(java.lang.String message, java.lang.Throwable cause)
Constructs aClustererException
with the specified detailed message and a cause.- Parameters:
message
- is the detailled message.cause
- is the cause (which is saved for later retrieval by theThrowable.getCause()
method). Anull
value is permitted, and indicates that the cause is nonexistent or unknown.
-
ClustererException
public ClustererException(java.lang.Throwable cause)
Constructs aClustererException
with the specified just a cause.- Parameters:
cause
- is the cause (which is saved for later retrieval by theThrowable.getCause()
method). Anull
value is permitted, and indicates that the cause is nonexistent or unknown.
-
-