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 theSQLExceptioninterface.- Author:
- Jens-S. Vöckler, Karan Vahi
- See Also:
SiteCatalog, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SiteCatalogException()Constructs aSiteCatalogExceptionwith no detail message.SiteCatalogException(java.lang.String s)Constructs aSiteCatalogExceptionwith the specified detailed message.SiteCatalogException(java.lang.String s, java.lang.Throwable cause)Constructs aSiteCatalogExceptionwith the specified detailed message and a cause.SiteCatalogException(java.lang.Throwable cause)Constructs aSiteCatalogExceptionwith 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 aSiteCatalogExceptionwith no detail message.
-
SiteCatalogException
public SiteCatalogException(java.lang.String s)
Constructs aSiteCatalogExceptionwith the specified detailed message.- Parameters:
s- is the detailled message.
-
SiteCatalogException
public SiteCatalogException(java.lang.String s, java.lang.Throwable cause)Constructs aSiteCatalogExceptionwith 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). Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.
-
SiteCatalogException
public SiteCatalogException(java.lang.Throwable cause)
Constructs aSiteCatalogExceptionwith the specified just a cause.- Parameters:
cause- is the cause (which is saved for later retrieval by theThrowable.getCause()method). Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.
-
-