com.supermap.services.providers.wfs.convert
Class InvalidExpressionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.supermap.services.providers.wfs.convert.InvalidExpressionException
-
- All Implemented Interfaces:
- java.io.Serializable
public class InvalidExpressionException extends java.lang.ExceptionException of wrong string expression.
When the parameter expression that expressed by string is converted to the Filter expression in the WFS implementation of SuperMap iServer, If the string expression is not valid, the exception is thrown.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description InvalidExpressionException()Default constructor.InvalidExpressionException(java.lang.String msg)Constructs a string expression exception based on the error message.InvalidExpressionException(java.lang.String msg, java.lang.Throwable e)Constructs a string expression exception based on error information and causes.InvalidExpressionException(java.lang.Throwable e)Build a string expression exception based on the cause.
-
-
-
Constructor Detail
-
InvalidExpressionException
public InvalidExpressionException()
Default constructor.
-
InvalidExpressionException
public InvalidExpressionException(java.lang.String msg)
Constructs a string expression exception based on the error message.
- Parameters:
msg- Error information.
-
InvalidExpressionException
public InvalidExpressionException(java.lang.String msg, java.lang.Throwable e)Constructs a string expression exception based on error information and causes.
- Parameters:
msg- Error information.e- reasons.
-
InvalidExpressionException
public InvalidExpressionException(java.lang.Throwable e)
Build a string expression exception based on the cause.
- Parameters:
e- reasons.
-
-