Class ServiceException

All Implemented Interfaces:
Serializable

public class ServiceException extends DSOutOfServiceException
Reports an error occurred while trying to access the OMERO service. Such an error can occur in the following case: broken connection, expired session or not logged in.
See Also:
  • Constructor Details

    • ServiceException

      public ServiceException(String message, Throwable cause, ConnectionStatus connectionStatus)
      Constructs a new exception with the specified cause and a generic message.
      Parameters:
      message - Short explanation of the problem.
      cause - The exception that caused this one to be risen.
      connectionStatus - The status of the connection to the server.
    • ServiceException

      public ServiceException(Throwable cause, ConnectionStatus connectionStatus)
      Constructs a new exception with the specified cause and a generic message.
      Parameters:
      cause - The exception that caused this one to be risen.
      connectionStatus - The status of the connection to the server.
    • ServiceException

      public ServiceException(String message, DSOutOfServiceException cause)
      Constructs a new exception with the specified cause and a generic message.
      Parameters:
      message - Short explanation of the problem.
      cause - The exception that caused this one to be risen.
    • ServiceException

      public ServiceException(String message, Throwable cause)
      Constructs a new exception with the specified cause and a generic message.
      Parameters:
      message - Short explanation of the problem.
      cause - The exception that caused this one to be risen.