Package com.microstrategy.web.app
Class WebAppConfigurationRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.microstrategy.utils.MSTRUncheckedException
-
- com.microstrategy.web.app.WebAppRuntimeException
-
- com.microstrategy.web.app.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 Summary
Constructors Constructor Description WebAppConfigurationRuntimeException()
WebAppConfigurationRuntimeException default constructor.WebAppConfigurationRuntimeException(int errorCode)
Deprecated.use other constructor insteadWebAppConfigurationRuntimeException(int errorCode, java.lang.Exception e)
Constructor to set an error code and an original ExceptionWebAppConfigurationRuntimeException(java.lang.Exception e)
Constructor to create an exception with just based on a previous exception.WebAppConfigurationRuntimeException(java.lang.String errorMsg)
Constructor to set a message, but no error code.WebAppConfigurationRuntimeException(java.lang.String errorMsg, int errorCode)
Constructor to set a message and error code.WebAppConfigurationRuntimeException(java.lang.String errorMsg, int errorCode, java.lang.Exception e)
Constructor to set a message, an error code and an original ExceptionWebAppConfigurationRuntimeException(java.lang.String errorMsg, java.lang.Exception e)
Constructor to set a message and the original exception
-
Method Summary
-
Methods inherited from class com.microstrategy.web.app.WebAppRuntimeException
getWrappedException
-
Methods inherited from class com.microstrategy.utils.MSTRUncheckedException
getCause, getDefaultLocale, getErrorCode, getLocalizableMessage, getMessage, getMessage, getRootCause, setCause, setDefaultLocale
-
-
-
-
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 insteadConstructor 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 exceptionerrorCode
- 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 exceptione
- 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 exceptionerrorCode
- The error code to set that field to upon creation.e
- The original Exception
-
-