Class HandlerInternalException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.microstrategy.web.objects.actions.HandlerException
-
- com.microstrategy.web.objects.actions.HandlerInternalException
-
- All Implemented Interfaces:
HandlerStatusCodes
,java.io.Serializable
public class HandlerInternalException extends HandlerException implements HandlerStatusCodes
This exception indicates an internal error, often from the Intelligence Server. Unlike a configuration error (which represents a Task which is not properly installed) and a malformed request, this exception is somewhere in the middle.- 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 HandlerInternalException(int taskErrorCode, java.lang.String errorMsg)
Creates a new HandlerInternalException.HandlerInternalException(int taskErrorCode, java.lang.String errorMsg, MSTRCheckedException e)
Creates a new HandlerInternalException.HandlerInternalException(MSTRCheckedException e)
Creates a new HandlerInternalException.
-
Method Summary
-
Methods inherited from class com.microstrategy.web.objects.actions.HandlerException
getGenericMessage, getStatusCode, getTaskErrorCode, setGenericMessage, setStatusCode, setTaskErrorCode
-
-
-
-
Constructor Detail
-
HandlerInternalException
public HandlerInternalException(int taskErrorCode, java.lang.String errorMsg)
Creates a new HandlerInternalException.- Parameters:
taskErrorCode
- The numeric, task-specific error code.errorMsg
- The String message.
-
HandlerInternalException
public HandlerInternalException(MSTRCheckedException e)
Creates a new HandlerInternalException.- Parameters:
e
- AMSTRCheckedException
that contains the error code and message.
-
HandlerInternalException
public HandlerInternalException(int taskErrorCode, java.lang.String errorMsg, MSTRCheckedException e)
Creates a new HandlerInternalException.- Parameters:
taskErrorCode
- The numeric, task-specific error code.errorMsg
- The String message.e
- AMSTRCheckedException
which is the cause.
-
-