com.supermap.services.components.spi

Class ServiceRuntimeException

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


    public class ServiceRuntimeException
    extends java.lang.RuntimeException
    

    Service runtime exception.

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor and Description
      ServiceRuntimeException(java.lang.String msg)
      Constructs a new exception object based on the exception information.
      ServiceRuntimeException(java.lang.String msg, java.lang.Throwable cause)
      Constructs a new exception object based on the exception information and exception cause.
      ServiceRuntimeException(java.lang.Throwable cause)
      Constructs a new exception object based on the 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

      • ServiceRuntimeException

        public ServiceRuntimeException(java.lang.String msg)
        

        Constructs a new exception object based on the exception information.

        Parameters:
        msg - Exception information.
      • ServiceRuntimeException

        public ServiceRuntimeException(java.lang.Throwable cause)
        

        Constructs a new exception object based on the exception cause.

        Parameters:
        cause - Exception cause.
      • ServiceRuntimeException

        public ServiceRuntimeException(java.lang.String msg,
                               java.lang.Throwable cause)
        

        Constructs a new exception object based on the exception information and exception cause.

        Parameters:
        msg - Exception information.
        cause - Exception cause.