Revision 423M

org.bridgedb
Class IDMapperException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.bridgedb.IDMapperException
All Implemented Interfaces:
java.io.Serializable

public class IDMapperException
extends java.lang.Exception

for all exceptions thrown by IDMapper interface.

Simple wrapper so using classes don't need to deal with implementation details of specific IDMapper implementations.

Usually wraps SQLException, ClassNotFoundException, for IDMapperRdb, XmlRpcException for IDMapperWebservice and IOException for IDMapperText

Simply use the inherited constructor IDMapperException(Throwable cause) to wrap an exception.

See Also:
Serialized Form

Constructor Summary
IDMapperException()
          See Exception ().
IDMapperException(java.lang.String msg)
          See Exception (String).
IDMapperException(java.lang.String msg, java.lang.Throwable t)
          See Exception(String, Throwable).
IDMapperException(java.lang.Throwable t)
          See Exception(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

IDMapperException

public IDMapperException(java.lang.Throwable t)
See Exception(Throwable).

Parameters:
t - cause

IDMapperException

public IDMapperException(java.lang.String msg,
                         java.lang.Throwable t)
See Exception(String, Throwable).

Parameters:
msg - a message
t - cause

IDMapperException

public IDMapperException(java.lang.String msg)
See Exception (String).

Parameters:
msg - a message

IDMapperException

public IDMapperException()
See Exception ().


Generated July 29 2010