Class ServiceException

All Implemented Interfaces:
Serializable

public class ServiceException extends RuntimeException
A service exception used to indicate that a service problem occurred.

A ServiceException object is created by the Framework or service implementation to denote an exception condition in the service. A type code is used to identify the exception type for future extendability. Service implementations may also create subclasses of ServiceException. When subclassing, the subclass should set the type to SUBCLASSED to indicate that ServiceException has been subclassed.

This exception conforms to the general purpose exception chaining mechanism.

Since:
1.5
See Also:
  • Field Details

    • UNSPECIFIED

      public static final int UNSPECIFIED
      No exception type is unspecified.
      See Also:
    • UNREGISTERED

      public static final int UNREGISTERED
      The service has been unregistered.
      See Also:
    • FACTORY_ERROR

      public static final int FACTORY_ERROR
      The service factory produced an invalid service object.
      See Also:
    • FACTORY_EXCEPTION

      public static final int FACTORY_EXCEPTION
      The service factory threw an exception.
      See Also:
    • SUBCLASSED

      public static final int SUBCLASSED
      The exception is a subclass of ServiceException. The subclass should be examined for the type of the exception.
      See Also:
    • REMOTE

      public static final int REMOTE
      An error occurred invoking a remote service.
      See Also:
    • FACTORY_RECURSION

      public static final int FACTORY_RECURSION
      The service factory resulted in a recursive call to itself for the requesting bundle.
      Since:
      1.6
      See Also:
    • ASYNC_ERROR

      public static final int ASYNC_ERROR
      An asynchronous operation was unable to obtain the service.
      Since:
      1.8
      See Also:
  • Constructor Details

    • ServiceException

      public ServiceException(String msg, Throwable cause)
      Creates a ServiceException with the specified message and exception cause.
      Parameters:
      msg - The associated message.
      cause - The cause of this exception.
    • ServiceException

      public ServiceException(String msg)
      Creates a ServiceException with the specified message.
      Parameters:
      msg - The message.
    • ServiceException

      public ServiceException(String msg, int type, Throwable cause)
      Creates a ServiceException with the specified message, type and exception cause.
      Parameters:
      msg - The associated message.
      type - The type for this exception.
      cause - The cause of this exception.
    • ServiceException

      public ServiceException(String msg, int type)
      Creates a ServiceException with the specified message and type.
      Parameters:
      msg - The message.
      type - The type for this exception.
  • Method Details

    • getType

      public int getType()
      Returns the type for this exception or UNSPECIFIED if the type was unspecified or unknown.
      Returns:
      The type of this exception.