Package edu.isi.pegasus.planner.code
Class CodeGeneratorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- edu.isi.pegasus.planner.code.CodeGeneratorException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
CondorStyleException
public class CodeGeneratorException extends java.lang.ExceptionThe baseclass of the exception that is thrown by all Code Generators. It is a checked exception.- Version:
- $Revision$
- Author:
- Karan Vahi
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CodeGeneratorException()Constructs aCodeGeneratorExceptionwith no detail message.CodeGeneratorException(java.lang.String message)Constructs aCodeGeneratorExceptionwith the specified detailed message.CodeGeneratorException(java.lang.String message, java.lang.Throwable cause)Constructs aCodeGeneratorExceptionwith the specified detailed message and a cause.CodeGeneratorException(java.lang.Throwable cause)Constructs aCodeGeneratorExceptionwith the specified just a cause.
-
-
-
Constructor Detail
-
CodeGeneratorException
public CodeGeneratorException()
Constructs aCodeGeneratorExceptionwith no detail message.
-
CodeGeneratorException
public CodeGeneratorException(java.lang.String message)
Constructs aCodeGeneratorExceptionwith the specified detailed message.- Parameters:
message- is the detailled message.
-
CodeGeneratorException
public CodeGeneratorException(java.lang.String message, java.lang.Throwable cause)Constructs aCodeGeneratorExceptionwith 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). Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.
-
CodeGeneratorException
public CodeGeneratorException(java.lang.Throwable cause)
Constructs aCodeGeneratorExceptionwith 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.
-
-