edu.isi.pegasus.planner.transfer.mapper
public class MapperException extends RuntimeException
Constructor and Description |
---|
MapperException()
Constructs a
MapperException with no detail
message. |
MapperException(String message)
Constructs a
MapperException with the specified detailed
message. |
MapperException(String message,
Throwable cause)
Constructs a
MapperException with the specified detailed
message and a cause. |
MapperException(Throwable cause)
Constructs a
MapperException with the
specified just a cause. |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public MapperException()
MapperException
with no detail
message.public MapperException(String message)
MapperException
with the specified detailed
message.message
- is the detailled message.public MapperException(String message, Throwable cause)
MapperException
with the specified detailed
message and a cause.message
- is the detailled message.cause
- is the cause (which is saved for later retrieval by the
Throwable.getCause()
method). A null
value is permitted, and indicates that the cause is nonexistent or
unknown.public MapperException(Throwable cause)
MapperException
with the
specified just a cause.cause
- is the cause (which is saved for later retrieval by the
Throwable.getCause()
method). A null
value is permitted, and indicates that the cause is nonexistent or
unknown.