Package com.microstrategy.web.platform
Class ContainerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.microstrategy.utils.MSTRUncheckedException
-
- com.microstrategy.web.platform.ContainerException
-
- All Implemented Interfaces:
LocalizableException
,java.io.Serializable
public class ContainerException extends MSTRUncheckedException
Deprecated.Not in use since its creation- Since:
- MicroStrategy Web 7.3.1 or earlier
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContainerException()
Deprecated.Constructs an empty ArgumentUnresolvedException.The error code is default to zero.ContainerException(int errorCode)
Deprecated.Construts an ContainerException with the specified error code.ContainerException(int code, java.lang.Object[] params, java.lang.Throwable e, java.util.Locale locale)
Deprecated.Construts an ArgumentUnresolvedException with the specified error code, parameters, the cause andLocale
.ContainerException(int code, java.lang.Object[] params, java.util.Locale locale)
Deprecated.Construts an ArgumentUnresolvedException with the specified error code, parameters andLocale
.ContainerException(LocalizableMessage errorMsg)
Deprecated.Construts an ContainerException with the specified error message.ContainerException(LocalizableMessage errorMsg, java.lang.Throwable e)
Deprecated.Construts an ArgumentUnresolvedException with the specified error message and cause.ContainerException(java.lang.String errorMsg)
Deprecated.Construts an ContainerException with the specified error message.ContainerException(java.lang.String errorMsg, int errorCode)
Deprecated.Construts an ContainerException with the specified error message and error code.
-
Method Summary
-
Methods inherited from class com.microstrategy.utils.MSTRUncheckedException
getCause, getDefaultLocale, getErrorCode, getLocalizableMessage, getMessage, getMessage, getRootCause, setCause, setDefaultLocale
-
-
-
-
Constructor Detail
-
ContainerException
public ContainerException(LocalizableMessage errorMsg)
Deprecated.Construts an ContainerException with the specified error message. The error code is default to zero.- Parameters:
errorMsg
- the localizable error message.- Since:
- MicroStrategy Web 8.0.0
-
ContainerException
public ContainerException(LocalizableMessage errorMsg, java.lang.Throwable e)
Deprecated.Construts an ArgumentUnresolvedException with the specified error message and cause. The error code is default to zero.- Parameters:
errorMsg
- the localizable error message.e
- the cause of the current ArgumentUnresolvedException.- Since:
- MicroStrategy Web 8.0.0
-
ContainerException
public ContainerException(int code, java.lang.Object[] params, java.util.Locale locale)
Deprecated.Construts an ArgumentUnresolvedException with the specified error code, parameters andLocale
.- Parameters:
code
- the error code.params
- an array of parameters.locale
- theLocale
used to localize the error message.- Since:
- MicroStrategy Web 8.0.0
-
ContainerException
public ContainerException(int code, java.lang.Object[] params, java.lang.Throwable e, java.util.Locale locale)
Deprecated.Construts an ArgumentUnresolvedException with the specified error code, parameters, the cause andLocale
.- Parameters:
code
- the error code.params
- an array of parameters.e
- the cause of the current ArgumentUnresolvedException.locale
- theLocale
used to localize the error mesage.- Since:
- MicroStrategy Web 8.0.0
-
ContainerException
public ContainerException()
Deprecated.Constructs an empty ArgumentUnresolvedException.The error code is default to zero.
-
ContainerException
public ContainerException(java.lang.String errorMsg)
Deprecated.Construts an ContainerException with the specified error message. The error code is default to zero.- Parameters:
errorMsg
- the error message.
-
ContainerException
public ContainerException(int errorCode)
Deprecated.Construts an ContainerException with the specified error code.- Parameters:
errorCode
- the error code.
-
ContainerException
public ContainerException(java.lang.String errorMsg, int errorCode)
Deprecated.Construts an ContainerException with the specified error message and error code.- Parameters:
errorMsg
- the error message.errorCode
- the error code.
-
-