Package com.microstrategy.web.transform
Class LayoutParsingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.microstrategy.utils.MSTRCheckedException
-
- com.microstrategy.web.transform.LayoutParsingException
-
- All Implemented Interfaces:
LocalizableException,java.io.Serializable
public class LayoutParsingException extends MSTRCheckedException
This exception represents a failed parser of the layout definition. When this is encountered, the caller should ask the LayoutParser instance for a set of error conditions.- 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 LayoutParsingException()Constructor.LayoutParsingException(int code, java.lang.Object[] params, java.lang.Throwable e, java.util.Locale locale)Deprecated.use other constructor insteadLayoutParsingException(int code, java.lang.Object[] params, java.util.Locale locale)Deprecated.use other constructor insteadLayoutParsingException(LocalizableMessage errorMsg)Constructor.LayoutParsingException(LocalizableMessage errorMsg, java.lang.Throwable e)Constructor.LayoutParsingException(java.lang.String msg)Constructor.LayoutParsingException(java.lang.String msg, java.lang.Throwable e)Constructor.LayoutParsingException(java.lang.Throwable e)Constructor.
-
Method Summary
-
Methods inherited from class com.microstrategy.utils.MSTRCheckedException
getCause, getDefaultLocale, getErrorCode, getLocalizableMessage, getMessage, getMessage, getMessage, getRootCause, getRootCause, setCause, setDefaultLocale, setXMLHandler
-
-
-
-
Constructor Detail
-
LayoutParsingException
public LayoutParsingException(LocalizableMessage errorMsg)
Constructor.- Parameters:
errorMsg- The error message for this exception.
-
LayoutParsingException
public LayoutParsingException(LocalizableMessage errorMsg, java.lang.Throwable e)
Constructor.- Parameters:
errorMsg- The error message for this exception.e- The embedded error object.
-
LayoutParsingException
public LayoutParsingException(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.
-
LayoutParsingException
public LayoutParsingException(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.
-
LayoutParsingException
public LayoutParsingException()
Constructor.
-
LayoutParsingException
public LayoutParsingException(java.lang.String msg)
Constructor.- Parameters:
msg- The error message for this exception.
-
LayoutParsingException
public LayoutParsingException(java.lang.Throwable e)
Constructor.- Parameters:
e- The embedded error.
-
LayoutParsingException
public LayoutParsingException(java.lang.String msg, java.lang.Throwable e)Constructor.- Parameters:
e- The embedded error.msg- The error message for this exception.
-
-