Class TLcdWFSServiceException

All Implemented Interfaces:
Serializable

public class TLcdWFSServiceException extends TLcdOGCServiceException
Class for OGC WFS service exceptions.
See Also:
  • Field Details

  • Constructor Details

    • TLcdWFSServiceException

      public TLcdWFSServiceException(int aCode)
      Constructor with an error code.

      The given exception information is converted to a TLcdOWSException and added to the list of exceptions. This list can be retrieved through TLcdOGCServiceException.getExceptions().

      Parameters:
      aCode - the exception's error code.
    • TLcdWFSServiceException

      public TLcdWFSServiceException(String aMessage, int aCode)
      Constructor with an error message and code.

      The given exception information is converted to a TLcdOWSException and added to the list of exceptions. This list can be retrieved through TLcdOGCServiceException.getExceptions().

      Parameters:
      aMessage - the error message
      aCode - the exception's error code.
    • TLcdWFSServiceException

      public TLcdWFSServiceException(int aCode, String aLocator)
      Constructor with an code and locator.

      The given exception information is converted to a TLcdOWSException and added to the list of exceptions. This list can be retrieved through TLcdOGCServiceException.getExceptions().

      Parameters:
      aCode - the exception's error code.
      aLocator - the location of the error in the client request
    • TLcdWFSServiceException

      public TLcdWFSServiceException(String aMessage, int aCode, String aLocator)
      Constructor with an error message, code and locator.

      The given exception information is converted to a TLcdOWSException and added to the list of exceptions. This list can be retrieved through TLcdOGCServiceException.getExceptions().

      Parameters:
      aMessage - the error message
      aCode - the exception's error code.
      aLocator - the location of the error in the client request
    • TLcdWFSServiceException

      public TLcdWFSServiceException(String aMessage, int aCode, String aLocator, String aServiceVersion)
      Constructor with an error message, code, locator and service information.

      The given exception information is converted to a TLcdOWSException and added to the list of exceptions. This list can be retrieved through TLcdOGCServiceException.getExceptions().

      Parameters:
      aMessage - the error message
      aCode - the exception's error code.
      aLocator - the location of the error in the client request
      aServiceVersion - the version of the service that generated the exception.
  • Method Details