Class WebAppConfigurationRuntimeException

  • All Implemented Interfaces:
    LocalizableException, java.io.Serializable

    public class WebAppConfigurationRuntimeException
    extends WebAppRuntimeException
    WebAppConfigurationRuntimeException is an exception that extends the WebAppRuntimeException. Thrown by objects in the framework or objects in the application layer when an error occurs during initialization.
    Since:
    MicroStrategy Web 7.3.1 or earlier
    See Also:
    Serialized Form
    • Constructor Detail

      • WebAppConfigurationRuntimeException

        public WebAppConfigurationRuntimeException()
        WebAppConfigurationRuntimeException default constructor. Sets all fields in the object to empty values.
      • WebAppConfigurationRuntimeException

        public WebAppConfigurationRuntimeException​(int errorCode)
        Deprecated.
        use other constructor instead
        Constructor to create an exception with just an error code, no message.
        Parameters:
        errorCode - The error code to set that field to upon creation.
      • WebAppConfigurationRuntimeException

        public WebAppConfigurationRuntimeException​(java.lang.String errorMsg)
        Constructor to set a message, but no error code.
        Parameters:
        errorMsg - The error message associated with this exception
      • WebAppConfigurationRuntimeException

        public WebAppConfigurationRuntimeException​(java.lang.Exception e)
        Constructor to create an exception with just based on a previous exception.
        Parameters:
        e - The original Exception
      • WebAppConfigurationRuntimeException

        public WebAppConfigurationRuntimeException​(java.lang.String errorMsg,
                                                   int errorCode)
        Constructor to set a message and error code.
        Parameters:
        errorMsg - The error message associated with this exception
        errorCode - The error code to set that field to upon creation.
      • WebAppConfigurationRuntimeException

        public WebAppConfigurationRuntimeException​(java.lang.String errorMsg,
                                                   java.lang.Exception e)
        Constructor to set a message and the original exception
        Parameters:
        errorMsg - The error message associated with this exception
        e - The original Exception
      • WebAppConfigurationRuntimeException

        public WebAppConfigurationRuntimeException​(int errorCode,
                                                   java.lang.Exception e)
        Constructor to set an error code and an original Exception
        Parameters:
        errorCode - The error code to set that field to upon creation.
        e - The original Exception
      • WebAppConfigurationRuntimeException

        public WebAppConfigurationRuntimeException​(java.lang.String errorMsg,
                                                   int errorCode,
                                                   java.lang.Exception e)
        Constructor to set a message, an error code and an original Exception
        Parameters:
        errorMsg - The error message associated with this exception
        errorCode - The error code to set that field to upon creation.
        e - The original Exception