com.supermap.services.components

Class DataException

  • java.lang.Object
    • java.lang.Throwable
      • java.lang.Exception
        • com.supermap.services.components.DataException
  • All Implemented Interfaces:
    java.io.Serializable


    public class DataException
    extends java.lang.Exception
    

    Data service component exception information.

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor and Description
      DataException()
      Default constructor.
      DataException(java.lang.String message)
      Constructs a new exception with specified details.
      DataException(java.lang.String message, java.lang.Throwable cause)
      Constructs a new exception with specified details and causes.
      DataException(java.lang.Throwable cause)
      Constructs a new exception with causes.
    • 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

      • DataException

        public DataException()
        
        Default constructor.
      • DataException

        public DataException(java.lang.String message)
        
        Constructs a new exception with specified details.
        Parameters:
        message - detailed message.
      • DataException

        public DataException(java.lang.String message,
                     java.lang.Throwable cause)
        
        Constructs a new exception with specified details and causes.
        Parameters:
        message - detailed message.
        cause - The cause.
      • DataException

        public DataException(java.lang.Throwable cause)
        
        Constructs a new exception with causes.
        Parameters:
        cause - The cause.