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 |
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.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
WebAppConfigurationRuntimeException()
WebAppConfigurationRuntimeException default constructor.
| |||||||||||
WebAppConfigurationRuntimeException(int errorCode)
This constructor is deprecated.
use other constructor instead
| |||||||||||
WebAppConfigurationRuntimeException(String errorMsg)
Constructor to set a message, but no error code.
| |||||||||||
WebAppConfigurationRuntimeException(Exception e)
Constructor to create an exception with just based on a previous exception.
| |||||||||||
WebAppConfigurationRuntimeException(String errorMsg, int errorCode)
Constructor to set a message and error code.
| |||||||||||
WebAppConfigurationRuntimeException(String errorMsg, Exception e)
Constructor to set a message and the original exception
| |||||||||||
WebAppConfigurationRuntimeException(int errorCode, Exception e)
Constructor to set an error code and an original Exception
| |||||||||||
WebAppConfigurationRuntimeException(String errorMsg, int errorCode, Exception e)
Constructor to set a message, an error code and an original Exception
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
WebAppConfigurationRuntimeException default constructor. Sets all fields in the object to empty values.
This constructor is deprecated.
use other constructor instead
Constructor to create an exception with just an error code, no message.
errorCode | The error code to set that field to upon creation. |
---|
Constructor to set a message, but no error code.
errorMsg | The error message associated with this exception |
---|
Constructor to create an exception with just based on a previous exception.
e | The original Exception |
---|
Constructor to set a message and error code.
errorMsg | The error message associated with this exception |
---|---|
errorCode | The error code to set that field to upon creation. |
Constructor to set a message and the original exception
errorMsg | The error message associated with this exception |
---|---|
e | The original Exception |
Constructor to set an error code and an original Exception
errorCode | The error code to set that field to upon creation. |
---|---|
e | The original Exception |
Constructor to set a message, an error code and an original Exception
errorMsg | The error message associated with this exception |
---|---|
errorCode | The error code to set that field to upon creation. |
e | The original Exception |