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.RuntimeException
    

    WFS 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.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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.