Package fr.igred.omero.exception
Class ServerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- Ice.UserException
-
- omero.ServerError
-
- fr.igred.omero.exception.ServerException
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
public class ServerException extends ServerError
Reports an error occurred on the server.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class omero.ServerError
message, serverExceptionClass, serverStackTrace
-
-
Constructor Summary
Constructors Constructor Description ServerException(java.lang.String details, java.lang.Throwable cause)
Constructs a new exception with the specified cause and detailed message.ServerException(java.lang.Throwable cause)
Constructs a new exception with the specified cause and detailed message.
-
Method Summary
-
Methods inherited from class omero.ServerError
__readImpl, __writeImpl, ice_name
-
Methods inherited from class Ice.UserException
__read, __read, __readImpl, __usesClasses, __write, __write, __writeImpl, clone, toString
-
-
-
-
Constructor Detail
-
ServerException
public ServerException(java.lang.String details, java.lang.Throwable cause)
Constructs a new exception with the specified cause and detailed message.- Parameters:
details
- Short explanation of the problem.cause
- The exception that caused this one to be risen.
-
ServerException
public ServerException(java.lang.Throwable cause)
Constructs a new exception with the specified cause and detailed message.- Parameters:
cause
- The exception that caused this one to be risen.
-
-