com.supermap.services

Class OGCParameterException

  • All Implemented Interfaces:
    java.io.Serializable


    public class OGCParameterException
    extends OGCException
    

    The parameter exception of the OGC service.

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor and Description
      OGCParameterException(boolean isExecuteLog, java.lang.Exception e)
      Constructs a new exception based on whether to output the log information and the known exception.
      OGCParameterException(java.lang.String message, java.lang.String code, java.lang.String format)
      Constructs a new exception based on the specified detail message, exception code, and exception format.
      OGCParameterException(java.lang.String message, java.lang.Throwable e, java.lang.String code, java.lang.String format)
      Constructs a new exception based on the specified detail message, reason, exception code, and exception format.
    • 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

      • OGCParameterException

        public OGCParameterException(boolean isExecuteLog,
                             java.lang.Exception e)
        
        Constructs a new exception based on whether to output the log information and the known exception.
        Parameters:
        isExecuteLog - whether to output the log information, true means to output, false means not.
        e - the existing exception.
      • OGCParameterException

        public OGCParameterException(java.lang.String message,
                             java.lang.String code,
                             java.lang.String format)
        
        Constructs a new exception based on the specified detail message, exception code, and exception format.
        Parameters:
        message - detailed message.
        code - the exception codes.
        format - the format of the exception information.
      • OGCParameterException

        public OGCParameterException(java.lang.String message,
                             java.lang.Throwable e,
                             java.lang.String code,
                             java.lang.String format)
        
        Constructs a new exception based on the specified detail message, reason, exception code, and exception format.
        Parameters:
        message - detailed message.
        e - reason.
        code - the exception codes.
        format - the format of the exception information.