com.supermap.services.components.spi

Class NotSupportedException

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


    public class NotSupportedException
    extends java.lang.RuntimeException
    

    Does not support exceptions.

    The exception is thrown for the operation that is not supported.

    See Also:
    Serialized Form
    • Constructor Summary

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

      • NotSupportedException

        public NotSupportedException()
        

        Default constructor.

      • NotSupportedException

        public NotSupportedException(java.lang.String message)
        

        Constructs a new exception with specified details.

        Parameters:
        message - detailed message.
      • NotSupportedException

        public NotSupportedException(java.lang.String message,
                             java.lang.Throwable cause)
        

        Constructs a new exception with specified details and causes.

        Parameters:
        message - detailed message.
        cause - The cause.
      • NotSupportedException

        public NotSupportedException(java.lang.Throwable cause)
        

        Constructs a new exception with causes.

        Parameters:
        cause - The cause.