Package com.microstrategy.web.tags
Class ComparisonUnresolvedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.microstrategy.utils.MSTRCheckedException
-
- com.microstrategy.web.tags.ComparisonUnresolvedException
-
- All Implemented Interfaces:
LocalizableException,java.io.Serializable
public class ComparisonUnresolvedException extends MSTRCheckedException
Thrown when the operands to be compared in theIfTagcan not be compared according to the Operator specified.- Since:
- MicroStrategy Web 9.0.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.microstrategy.utils.MSTRCheckedException
MSTRCheckedException.ExceptionXMLHandler
-
-
Constructor Summary
Constructors Constructor Description ComparisonUnresolvedException()Constructs an empty ComparisonUnresolvedException.The error code is default to zero.ComparisonUnresolvedException(int code, java.lang.Object[] params, java.lang.Throwable e, java.util.Locale locale)Construts an ComparisonUnresolvedException with the specified error code, parameters, the cause andLocale.ComparisonUnresolvedException(int code, java.lang.Object[] params, java.util.Locale locale)Construts an ComparisonUnresolvedException with the specified error code, parameters andLocale.ComparisonUnresolvedException(LocalizableMessage errorMsg)Construts an ComparisonUnresolvedException with the specified error message.ComparisonUnresolvedException(LocalizableMessage errorMsg, java.lang.Throwable e)Construts an ComparisonUnresolvedException with the specified error message and cause.ComparisonUnresolvedException(java.lang.String errorMsg)Construts an ComparisonUnresolvedException with the specified error message.ComparisonUnresolvedException(java.lang.String errorMsg, java.lang.Throwable e)Construts an ComparisonUnresolvedException with the specified error message and cause.ComparisonUnresolvedException(java.lang.Throwable e)Construts an ComparisonUnresolvedException with the specified cause.
-
Method Summary
-
Methods inherited from class com.microstrategy.utils.MSTRCheckedException
getAuditInfo, getCause, getDefaultLocale, getErrorCode, getLocalizableMessage, getMessage, getMessage, getMessage, getRootCause, getRootCause, setAuditInfo, setCause, setDefaultLocale, setXMLHandler
-
-
-
-
Constructor Detail
-
ComparisonUnresolvedException
public ComparisonUnresolvedException(LocalizableMessage errorMsg)
Construts an ComparisonUnresolvedException with the specified error message. The error code is default to zero.- Parameters:
errorMsg- the localizable error message.
-
ComparisonUnresolvedException
public ComparisonUnresolvedException(LocalizableMessage errorMsg, java.lang.Throwable e)
Construts an ComparisonUnresolvedException 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 ComparisonUnresolvedException.
-
ComparisonUnresolvedException
public ComparisonUnresolvedException(int code, java.lang.Object[] params, java.util.Locale locale)Construts an ComparisonUnresolvedException with the specified error code, parameters andLocale.- Parameters:
code- the error code.params- an array of parameters.locale- theLocaleused to localize the error message.
-
ComparisonUnresolvedException
public ComparisonUnresolvedException(int code, java.lang.Object[] params, java.lang.Throwable e, java.util.Locale locale)Construts an ComparisonUnresolvedException 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 ComparisonUnresolvedException.locale- theLocaleused to localize the error mesage.
-
ComparisonUnresolvedException
public ComparisonUnresolvedException()
Constructs an empty ComparisonUnresolvedException.The error code is default to zero.
-
ComparisonUnresolvedException
public ComparisonUnresolvedException(java.lang.String errorMsg)
Construts an ComparisonUnresolvedException with the specified error message. The error code is default to zero.- Parameters:
errorMsg- the error message.
-
ComparisonUnresolvedException
public ComparisonUnresolvedException(java.lang.Throwable e)
Construts an ComparisonUnresolvedException with the specified cause. The error code is default to zero.- Parameters:
e- the cause of the current ComparisonUnresolvedException.
-
ComparisonUnresolvedException
public ComparisonUnresolvedException(java.lang.String errorMsg, java.lang.Throwable e)Construts an ComparisonUnresolvedException with the specified error message and cause. The error code is default to zero.- Parameters:
errorMsg- the error message.e- the cause of the current ComparisonUnresolvedException.
-
-