com.supermap.services.providers
Class WFSServiceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.supermap.services.providers.WFSServiceException
-
- All Implemented Interfaces:
- java.io.Serializable
public class WFSServiceException extends java.lang.RuntimeExceptionWFS service exception class.
This exception is thrown when an WFS service is accessed and an error occurs in the document returned by the WFS service.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description WFSServiceException()Default constructor.WFSServiceException(java.lang.String msg)Builds a WFS service exception with detailed information.WFSServiceException(java.lang.String msg, java.lang.Throwable e)Builds a WFS service exception with details and exceptions.WFSServiceException(java.lang.Throwable e)Builds a WFS service exception with an exception cause.
-
-
-
Constructor Detail
-
WFSServiceException
public WFSServiceException()
Default constructor.
-
WFSServiceException
public WFSServiceException(java.lang.String msg)
Builds a WFS service exception with detailed information.
- Parameters:
msg- the detailed message.
-
WFSServiceException
public WFSServiceException(java.lang.Throwable e)
Builds a WFS service exception with an exception cause.
- Parameters:
e- abnormal cause.
-
WFSServiceException
public WFSServiceException(java.lang.String msg, java.lang.Throwable e)Builds a WFS service exception with details and exceptions.
- Parameters:
msg- the detailed message.e- abnormal cause.
-
-