Package com.microstrategy.web.tasks
Class TaskRequestMalformedException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- com.microstrategy.web.tasks.TaskException
 - 
- com.microstrategy.web.tasks.TaskRequestMalformedException
 
 
 
 
 
- 
- All Implemented Interfaces:
 TaskStatusCodes,java.io.Serializable
public class TaskRequestMalformedException extends TaskException implements TaskStatusCodes
This exception class represents the condition when an incoming Task request is malformed.- 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 TaskRequestMalformedException(java.lang.Exception e)Creates a new TaskRequestMalformedException object.TaskRequestMalformedException(java.lang.String msg)Creates a new TaskRequestMalformedException object.TaskRequestMalformedException(java.lang.String msg, java.lang.Throwable e)Creates a new TaskRequestMalformedException object. 
- 
Method Summary
- 
Methods inherited from class com.microstrategy.web.tasks.TaskException
getGenericMessage, getStatusCode, getTaskErrorCode, setGenericMessage, setStatusCode, setTaskErrorCode 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
TaskRequestMalformedException
public TaskRequestMalformedException(java.lang.String msg)
Creates a new TaskRequestMalformedException object.- Parameters:
 msg- The message to associate with this exception.
 
- 
TaskRequestMalformedException
public TaskRequestMalformedException(java.lang.Exception e)
Creates a new TaskRequestMalformedException object.- Parameters:
 e- An inner Exception to associate with this exception.
 
- 
TaskRequestMalformedException
public TaskRequestMalformedException(java.lang.String msg, java.lang.Throwable e)Creates a new TaskRequestMalformedException object.- Parameters:
 e- An inner Throwable to associate with this exception.
 
 - 
 
 -