Package com.microstrategy.web.objects
Class WebObjectsRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.microstrategy.utils.MSTRUncheckedException
-
- com.microstrategy.web.objects.WebObjectsRuntimeException
-
- All Implemented Interfaces:
LocalizableException
,java.io.Serializable
public final class WebObjectsRuntimeException extends MSTRUncheckedException
The class WebObjectsRuntimeException is a subclass of java.lang.RuntimeException. This is an exception class for all programming or critical XML errors detected by the WebObjects. This will be thrown if cached XML is found to be critically incorrect. This class extends the standard Exception class by providing a method to return an error code associated with the exception.- Since:
- MicroStrategy Web 7.3.1 or earlier
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WebObjectsRuntimeException(int code, java.lang.Object[] params, java.lang.Throwable e, java.util.Locale locale)
Deprecated.use other constructor insteadWebObjectsRuntimeException(int code, java.lang.Object[] params, java.util.Locale locale)
Deprecated.use other constructor insteadWebObjectsRuntimeException(LocalizableMessage errorMsg)
Constructor.WebObjectsRuntimeException(LocalizableMessage errorMsg, java.lang.Throwable e)
Constructor.
-
Method Summary
-
Methods inherited from class com.microstrategy.utils.MSTRUncheckedException
getCause, getDefaultLocale, getErrorCode, getLocalizableMessage, getMessage, getMessage, getRootCause, setCause, setDefaultLocale
-
-
-
-
Constructor Detail
-
WebObjectsRuntimeException
public WebObjectsRuntimeException(LocalizableMessage errorMsg)
Constructor.- Parameters:
errorMsg
- The error message for this exception.- Since:
- MicroStrategy Web 8.0.0
-
WebObjectsRuntimeException
public WebObjectsRuntimeException(LocalizableMessage errorMsg, java.lang.Throwable e)
Constructor.- Parameters:
errorMsg
- The error message for this exception.- Since:
- MicroStrategy Web 8.0.0
-
WebObjectsRuntimeException
public WebObjectsRuntimeException(int code, java.lang.Object[] params, java.util.Locale locale)
Deprecated.use other constructor insteadConstructor.- Parameters:
code
- error code.locale
- The locale to localize this exception.params
- The parameters required to constructing the error message based on error code.- Since:
- MicroStrategy Web 8.0.0
-
WebObjectsRuntimeException
public WebObjectsRuntimeException(int code, java.lang.Object[] params, java.lang.Throwable e, java.util.Locale locale)
Deprecated.use other constructor insteadConstructor.- Parameters:
code
- error code.locale
- The locale to localize this exception.params
- The parameters required to constructing the error message based on error code.e
- The embedded error.- Since:
- MicroStrategy Web 8.0.0
-
-