org.intermine
Class InterMineException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by 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.

See Also:
Serialized Form

Constructor Summary
InterMineException()
          Constructs an InterMineException
InterMineException(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.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

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 message
t - the nested throwable