public class

HandlerInternalException

extends HandlerException
implements HandlerStatusCodes
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ com.microstrategy.web.objects.actions.HandlerException
         ↳ com.microstrategy.web.objects.actions.HandlerInternalException

Class Overview

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.

Summary

[Expand]
Inherited Constants
From interface com.microstrategy.web.objects.actions.HandlerStatusCodes
Public Constructors
HandlerInternalException(int taskErrorCode, String errorMsg)
Creates a new HandlerInternalException.
HandlerInternalException(MSTRCheckedException e)
Creates a new HandlerInternalException.
HandlerInternalException(int taskErrorCode, String errorMsg, MSTRCheckedException e)
Creates a new HandlerInternalException.
[Expand]
Inherited Methods
From class com.microstrategy.web.objects.actions.HandlerException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public HandlerInternalException (int taskErrorCode, String errorMsg)

Creates a new HandlerInternalException.

Parameters
taskErrorCode The numeric, task-specific error code.
errorMsg The String message.

public HandlerInternalException (MSTRCheckedException e)

Creates a new HandlerInternalException.

Parameters
e A MSTRCheckedException that contains the error code and message.

public HandlerInternalException (int taskErrorCode, String errorMsg, MSTRCheckedException e)

Creates a new HandlerInternalException.

Parameters
taskErrorCode The numeric, task-specific error code.
errorMsg The String message.
e A MSTRCheckedException which is the cause.