Class 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
    • 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 - A MSTRCheckedException 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 - A MSTRCheckedException which is the cause.