com.ibm.task.plugins
Class TaskDeploymentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.ibm.task.api.TaskException
com.ibm.task.plugins.TaskDeploymentException
- All Implemented Interfaces:
- java.io.Serializable
public class TaskDeploymentException
- extends TaskException
Base class for all exceptions thrown during task deployment.
- Since:
- 6.0.1
- See Also:
- Serialized Form
Field Summary |
static java.lang.String |
COPYRIGHT
|
Constructor Summary |
TaskDeploymentException(java.lang.String message)
Constructs an exception object. |
TaskDeploymentException(java.lang.String key,
java.lang.Object[] vars,
java.lang.String id,
java.lang.Throwable cause)
Constructs an exception object with a localized message. |
TaskDeploymentException(java.lang.String message,
java.lang.Throwable cause)
Constructs an exception object. |
TaskDeploymentException(java.lang.Throwable cause)
Constructs an exception object. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
COPYRIGHT
public static final java.lang.String COPYRIGHT
- See Also:
- Constant Field Values
TaskDeploymentException
public TaskDeploymentException(java.lang.String message)
- Constructs an exception object.
- Parameters:
message
- The error message.
TaskDeploymentException
public TaskDeploymentException(java.lang.Throwable cause)
- Constructs an exception object.
- Parameters:
cause
- The exception that was thrown.
TaskDeploymentException
public TaskDeploymentException(java.lang.String message,
java.lang.Throwable cause)
- Constructs an exception object.
- Parameters:
message
- The error message.cause
- The exception that was thrown.
TaskDeploymentException
public TaskDeploymentException(java.lang.String key,
java.lang.Object[] vars,
java.lang.String id,
java.lang.Throwable cause)
- Constructs an exception object with a localized message.
- Parameters:
key
- The message key.id
- The message id.vars
- The message variables. May be null
.cause
- The exception that was thrown.