Package com.microstrategy.web.tasks
Class TaskConfigurationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.microstrategy.web.tasks.TaskException
-
- com.microstrategy.web.tasks.TaskConfigurationException
-
- All Implemented Interfaces:
TaskStatusCodes
,java.io.Serializable
public class TaskConfigurationException extends TaskException implements TaskStatusCodes
This exception indicates that a Task is not properly configured. This could be a wide range of error conditions (can't instantiate a Bean, can't find a Block) but does not indicate a problem with the incoming request.- Since:
- MicroStrategy Web 8.1.0
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface com.microstrategy.web.tasks.TaskStatusCodes
TASK_FORBIDDEN, TASK_INTERNAL_ERROR, TASK_MISCONFIGURED, TASK_NOT_FOUND, TASK_NOT_REQUESTED, TASK_REQUEST_MALFORMED, TASK_REQUEST_RESUBMIT, TASK_SUCCESS, TASK_UNAUTHORIZED
-
-
Constructor Summary
Constructors Constructor Description TaskConfigurationException(java.lang.Exception e)
Creates a new TaskConfigurationException object.TaskConfigurationException(java.lang.String msg)
Creates a new TaskConfigurationException object.TaskConfigurationException(java.lang.String message, java.lang.Throwable e)
-
Method Summary
-
Methods inherited from class com.microstrategy.web.tasks.TaskException
getGenericMessage, getStatusCode, getTaskErrorCode, setGenericMessage, setStatusCode, setTaskErrorCode
-
-
-
-
Constructor Detail
-
TaskConfigurationException
public TaskConfigurationException(java.lang.String msg)
Creates a new TaskConfigurationException object.- Parameters:
msg
- The error message to associate with this exception.
-
TaskConfigurationException
public TaskConfigurationException(java.lang.Exception e)
Creates a new TaskConfigurationException object.- Parameters:
e
- The nested exception to associate with this exception.
-
TaskConfigurationException
public TaskConfigurationException(java.lang.String message, java.lang.Throwable e)
-
-