Package org.intermine
Class InterMineException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.intermine.InterMineException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ParseValueException
public class InterMineException extends java.lang.Exception
An Exception that may be thrown by client facing parts of InterMine code.- Author:
- Richard Smith
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InterMineException()
Constructs an InterMineExceptionInterMineException(java.lang.String msg)
Constructs an InterMineException with the specified detail message.InterMineException(java.lang.String msg, java.lang.Throwable t)
Constructs an InterMineException with the specified detail message and nested throwable.InterMineException(java.lang.Throwable t)
Constructs an InterMineException with the specified nested throwable.
-
-
-
Constructor Detail
-
InterMineException
public InterMineException()
Constructs an InterMineException
-
InterMineException
public InterMineException(java.lang.String msg)
Constructs an InterMineException with the specified detail message.- Parameters:
msg
- the detail message
-
InterMineException
public InterMineException(java.lang.Throwable t)
Constructs an InterMineException with the specified nested throwable.- Parameters:
t
- the nested throwable
-
InterMineException
public InterMineException(java.lang.String msg, java.lang.Throwable t)
Constructs an InterMineException with the specified detail message and nested throwable.- Parameters:
msg
- the detail messaget
- the nested throwable
-
-