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