Class MapperException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- edu.isi.pegasus.planner.transfer.mapper.MapperException
-
- All Implemented Interfaces:
java.io.Serializable
public class MapperException extends java.lang.RuntimeException
The baseclass of the exception that is thrown by all Mappers. It is a checked exception.- Version:
- $Revision$
- Author:
- Karan Vahi
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MapperException()
Constructs aMapperException
with no detail message.MapperException(java.lang.String message)
Constructs aMapperException
with the specified detailed message.MapperException(java.lang.String message, java.lang.Throwable cause)
Constructs aMapperException
with the specified detailed message and a cause.MapperException(java.lang.Throwable cause)
Constructs aMapperException
with the specified just a cause.
-
-
-
Constructor Detail
-
MapperException
public MapperException()
Constructs aMapperException
with no detail message.
-
MapperException
public MapperException(java.lang.String message)
Constructs aMapperException
with the specified detailed message.- Parameters:
message
- is the detailled message.
-
MapperException
public MapperException(java.lang.String message, java.lang.Throwable cause)
Constructs aMapperException
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.
-
MapperException
public MapperException(java.lang.Throwable cause)
Constructs aMapperException
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.
-
-