java.lang.Object | ||||
↳ | java.lang.Throwable | |||
↳ | java.lang.Exception | |||
↳ | com.microstrategy.utils.MSTRCheckedException | |||
↳ | com.microstrategy.web.beans.WebBeanException |
![]() |
Thrown when a WebBean
encounters any error during the processing of
its contents. Usually it represents an error in the bean level, excluding
errors in the Web Objects API layer.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
WebBeanException(LocalizableMessage errorMsg)
Constructor.
| |||||||||||
WebBeanException(LocalizableMessage errorMsg, Throwable e)
Constructor.
| |||||||||||
WebBeanException(int code, Object[] params, Locale locale)
This constructor is deprecated.
use other constructor instead
| |||||||||||
WebBeanException(int code, Object[] params, Throwable e, Locale locale)
This constructor is deprecated.
use other constructor instead
| |||||||||||
WebBeanException()
Constructs a
WebBeanException with no detail error
code or error message. | |||||||||||
WebBeanException(int errorCode)
This constructor is deprecated.
use other constructor instead
| |||||||||||
WebBeanException(String errorMsg)
Constructs a
WebBeanException with the specified error
message. | |||||||||||
WebBeanException(String errorMsg, int errorCode)
Constructs a
WebBeanException with the specified error
code and error message. | |||||||||||
WebBeanException(String errorMsg, int errorCode, Throwable e)
Constructs a
WebBeanException with the specified error
code, error message and the exception cause. | |||||||||||
WebBeanException(Throwable e)
Constructs a
WebBeanException from the original cause of
this exception. | |||||||||||
WebBeanException(String errorMsg, Throwable e)
Constructs a
WebBeanException with the specified error
message and the exception cause. |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
Constructor.
errorMsg | localizable error message. |
---|
Constructor.
errorMsg | localizable error message. |
---|---|
e | throwable. |
This constructor is deprecated.
use other constructor instead
Constructor.
code | error code. |
---|---|
params | error message parameterization. |
locale | locale. |
This constructor is deprecated.
use other constructor instead
Constructor.
code | error code. |
---|---|
params | error message parameterization. |
e | throwable. |
locale | locale. |
Constructs a WebBeanException
with no detail error
code or error message.
This constructor is deprecated.
use other constructor instead
Constructs a WebBeanException
with the specified error
code.
errorCode | the detail code |
---|
Constructs a WebBeanException
with the specified error
message.
errorMsg | the detail message |
---|
Constructs a WebBeanException
with the specified error
code and error message.
errorMsg | the detail message |
---|---|
errorCode | the detail code |
Constructs a WebBeanException
with the specified error
code, error message and the exception cause.
errorMsg | the detail message |
---|---|
errorCode | the detail code |
e | the original cause of this exception |
Constructs a WebBeanException
from the original cause of
this exception.
e | the original cause of this exception |
---|
Constructs a WebBeanException
with the specified error
message and the exception cause.
errorMsg | the detail message |
---|---|
e | the original cause of this exception |