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
Fields Modifier and Type Field and Description static java.lang.String
COPYRIGHT
-
Constructor Summary
Constructors Constructor and Description 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 catalog, 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.
-
Method Summary
-
Methods inherited from class com.ibm.task.api.TaskException
getCause, getMessage, getMessage, getMessageID, getMessageKey, getMessageVariables, getRootCause, printStackTrace, printStackTrace, printStackTrace
-
-
-
-
Field Detail
-
COPYRIGHT
public static final java.lang.String COPYRIGHT
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
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 benull
.cause
- The exception that was thrown.
-
TaskDeploymentException
public TaskDeploymentException(java.lang.String catalog, 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:
catalog
- The catalog which have to be used to retrieve the message.key
- The message key.id
- The message id.vars
- The message variables. May benull
.cause
- The exception that was thrown.
-
-