Class ReplicaCatalogException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- edu.isi.pegasus.planner.catalog.CatalogException
-
- edu.isi.pegasus.planner.catalog.replica.ReplicaCatalogException
-
- All Implemented Interfaces:
java.io.Serializable
public class ReplicaCatalogException extends CatalogException
Class to notify of failures. Exceptions are chained like theSQLException
interface.- Author:
- Jens-S. Vöckler, Karan Vahi
- See Also:
org.griphyn.common.catalog.ReplicaCatalog
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ReplicaCatalogException()
ReplicaCatalogException(java.lang.String s)
Constructs aReplicaCatalogException
with the specified detailed message.ReplicaCatalogException(java.lang.String s, java.lang.Throwable cause)
Constructs aReplicaCatalogException
with the specified detailed message and a cause.ReplicaCatalogException(java.lang.Throwable cause)
Constructs aReplicaCatalogException
with the specified just a cause.
-
Method Summary
-
Methods inherited from class edu.isi.pegasus.planner.catalog.CatalogException
getNextException, setNextException
-
-
-
-
Constructor Detail
-
ReplicaCatalogException
public ReplicaCatalogException()
-
ReplicaCatalogException
public ReplicaCatalogException(java.lang.String s)
Constructs aReplicaCatalogException
with the specified detailed message.- Parameters:
s
- is the detailled message.
-
ReplicaCatalogException
public ReplicaCatalogException(java.lang.String s, java.lang.Throwable cause)
Constructs aReplicaCatalogException
with the specified detailed message and a cause.- Parameters:
s
- 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.
-
ReplicaCatalogException
public ReplicaCatalogException(java.lang.Throwable cause)
Constructs aReplicaCatalogException
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.
-
-