Package fr.igred.omero.exception
Class ServiceException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- omero.gateway.exception.DSOutOfServiceException
 - 
- fr.igred.omero.exception.ServiceException
 
 
 
 
 
- 
- All Implemented Interfaces:
 java.io.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:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description ServiceException(java.lang.String message, java.lang.Throwable cause, ConnectionStatus connectionStatus)Constructs a new exception with the specified cause and a generic message.ServiceException(java.lang.String message, DSOutOfServiceException cause)Constructs a new exception with the specified cause and a generic message.ServiceException(java.lang.Throwable cause, ConnectionStatus connectionStatus)Constructs a new exception with the specified cause and a generic message. 
- 
Method Summary
- 
Methods inherited from class omero.gateway.exception.DSOutOfServiceException
getConnectionStatus 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
ServiceException
public ServiceException(java.lang.String message, java.lang.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(java.lang.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(java.lang.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.
 
 - 
 
 -