Package com.microstrategy.web.tags
Class MalformedMethodException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.microstrategy.utils.MSTRCheckedException
-
- com.microstrategy.web.tags.MalformedMethodException
-
- All Implemented Interfaces:
LocalizableException,java.io.Serializable
public class MalformedMethodException extends MSTRCheckedException
Thrown when there is any error invoking a rendering method through Java reflection API.- Since:
- MicroStrategy Web 8.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 MalformedMethodException()Constructor.MalformedMethodException(int code, java.lang.Object[] params, java.lang.Throwable e, java.util.Locale locale)Deprecated.use other constructor instead.MalformedMethodException(int code, java.lang.Object[] params, java.util.Locale locale)Deprecated.use other constructor instead.MalformedMethodException(LocalizableMessage errorMsg)Constructor.MalformedMethodException(LocalizableMessage errorMsg, java.lang.Throwable e)Constructor.MalformedMethodException(java.lang.String errorMsg)Constructor.MalformedMethodException(java.lang.String errorMsg, java.lang.Throwable e)Constructor.MalformedMethodException(java.lang.Throwable e)Constructor.
-
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
-
MalformedMethodException
public MalformedMethodException(LocalizableMessage errorMsg)
Constructor. The error code is default to zero.- Parameters:
errorMsg- the localizable error message.
-
MalformedMethodException
public MalformedMethodException(LocalizableMessage errorMsg, java.lang.Throwable e)
Constructor. and cause. The error code is default to zero.- Parameters:
errorMsg- the localizable error message.e- the cause of the current MalformedMethodException.
-
MalformedMethodException
@Deprecated public MalformedMethodException(int code, java.lang.Object[] params, java.util.Locale locale)Deprecated.use other constructor instead.Constructor. parameters andLocale.- Parameters:
code- the error code.params- an array of parameters.locale- theLocaleused to localize the error message.
-
MalformedMethodException
@Deprecated public MalformedMethodException(int code, java.lang.Object[] params, java.lang.Throwable e, java.util.Locale locale)Deprecated.use other constructor instead.Constructor. parameters, the cause andLocale.- Parameters:
code- the error code.params- an array of parameters.e- the cause of the current MalformedMethodException.locale- theLocaleused to localize the error mesage.
-
MalformedMethodException
public MalformedMethodException()
Constructor.
-
MalformedMethodException
public MalformedMethodException(java.lang.String errorMsg)
Constructor. The error code is default to zero.- Parameters:
errorMsg- the error message.
-
MalformedMethodException
public MalformedMethodException(java.lang.Throwable e)
Constructor. The error code is default to zero.- Parameters:
e- the cause of the current MalformedMethodException.
-
MalformedMethodException
public MalformedMethodException(java.lang.String errorMsg, java.lang.Throwable e)Constructor. and cause. The error code is default to zero.- Parameters:
errorMsg- the error message.e- the cause of the current MalformedMethodException.
-
-