Class HandlerConfigurationException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- com.microstrategy.web.objects.actions.HandlerException
 - 
- com.microstrategy.web.objects.actions.HandlerConfigurationException
 
 
 
 
 
- 
- All Implemented Interfaces:
 HandlerStatusCodes,java.io.Serializable
public class HandlerConfigurationException extends HandlerException implements HandlerStatusCodes
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.objects.actions.HandlerStatusCodes
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 HandlerConfigurationException(java.lang.Exception e)Creates a new TaskConfigurationException object.HandlerConfigurationException(java.lang.String msg)Creates a new TaskConfigurationException object. 
- 
Method Summary
- 
Methods inherited from class com.microstrategy.web.objects.actions.HandlerException
getGenericMessage, getStatusCode, getTaskErrorCode, setGenericMessage, setStatusCode, setTaskErrorCode 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
HandlerConfigurationException
public HandlerConfigurationException(java.lang.String msg)
Creates a new TaskConfigurationException object.- Parameters:
 msg- The error message to associate with this exception.
 
- 
HandlerConfigurationException
public HandlerConfigurationException(java.lang.Exception e)
Creates a new TaskConfigurationException object.- Parameters:
 e- The nested exception to associate with this exception.
 
 - 
 
 -