Class ServiceException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ServiceException
    extends CoreException

    Exception thrown by Services.

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ServiceException()
      Creates a new instance.
      ServiceException​(java.lang.String description)
      Creates a new instance with a description of the Exception.
      ServiceException​(java.lang.String description, java.lang.Throwable cause)
      Creates a new instance with a reference to a previous Exception and a description of the Exception.
      ServiceException​(java.lang.Throwable cause)
      Creates a new instance with a reference to a previous Exception.
    • 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

      • ServiceException

        public ServiceException()

        Creates a new instance.

      • ServiceException

        public ServiceException​(java.lang.Throwable cause)

        Creates a new instance with a reference to a previous Exception.

        Parameters:
        cause - a previous, causal Exception
      • ServiceException

        public ServiceException​(java.lang.String description)

        Creates a new instance with a description of the Exception.

        Parameters:
        description - description of the Exception
      • ServiceException

        public ServiceException​(java.lang.String description,
                                java.lang.Throwable cause)

        Creates a new instance with a reference to a previous Exception and a description of the Exception.

        Parameters:
        description - of the Exception
        cause - previous Exception