Class CondorStyleException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- edu.isi.pegasus.planner.code.CodeGeneratorException
-
- edu.isi.pegasus.planner.code.generator.condor.CondorStyleException
-
- All Implemented Interfaces:
java.io.Serializable
public class CondorStyleException extends CodeGeneratorException
A specific exception for the Condor Style generators.- Version:
- $Revision$
- Author:
- Karan Vahi
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CondorStyleException()
Constructs aCondorStyleException
with no detail message.CondorStyleException(java.lang.String message)
Constructs aCondorStyleException
with the specified detailed message.CondorStyleException(java.lang.String message, java.lang.Throwable cause)
Constructs aCondorStyleException
with the specified detailed message and a cause.CondorStyleException(java.lang.Throwable cause)
Constructs aCondorStyleException
with the specified just a cause.
-
-
-
Constructor Detail
-
CondorStyleException
public CondorStyleException()
Constructs aCondorStyleException
with no detail message.
-
CondorStyleException
public CondorStyleException(java.lang.String message)
Constructs aCondorStyleException
with the specified detailed message.- Parameters:
message
- is the detailled message.
-
CondorStyleException
public CondorStyleException(java.lang.String message, java.lang.Throwable cause)
Constructs aCondorStyleException
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.
-
CondorStyleException
public CondorStyleException(java.lang.Throwable cause)
Constructs aCondorStyleException
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.
-
-