The Octet Molecular Representation Framework v0.8.2

net.sf.octet.error
Class InvalidAtomMapException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended bynet.sf.octet.error.InvalidAtomMapException
All Implemented Interfaces:
java.io.Serializable

public class InvalidAtomMapException
extends java.lang.RuntimeException

Thrown when an invalid AtomMap is detected. An AtomMap may be considered invalid for several reasons, such as incomplete or inconsistent Atom mapping.

Author:
Richard Apodaca
See Also:
Serialized Form

Constructor Summary
InvalidAtomMapException()
          Constructs a fully functional InvalidAtomMapException containing a blank message.
InvalidAtomMapException(java.lang.String message)
          Constructs a fully functional InvalidAtomMapException containing the specified message.
InvalidAtomMapException(java.lang.String message, java.lang.Throwable cause)
          Constructs a fully functional InvalidAtomMapException with the specified message and wrapping the specified Throwable.
InvalidAtomMapException(java.lang.Throwable cause)
          Constructs a fully functional InvalidAtomMapException by wrapping the specified Throwable.
 
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

InvalidAtomMapException

public InvalidAtomMapException()
Constructs a fully functional InvalidAtomMapException containing a blank message.


InvalidAtomMapException

public InvalidAtomMapException(java.lang.String message)
Constructs a fully functional InvalidAtomMapException containing the specified message.

Parameters:
message - the message to be used

InvalidAtomMapException

public InvalidAtomMapException(java.lang.Throwable cause)
Constructs a fully functional InvalidAtomMapException by wrapping the specified Throwable. This is useful for exception chaining.

Parameters:
cause - the cause for this InvalidAtomMapException to be thrown

InvalidAtomMapException

public InvalidAtomMapException(java.lang.String message,
                               java.lang.Throwable cause)
Constructs a fully functional InvalidAtomMapException with the specified message and wrapping the specified Throwable. This is useful in exception chaining.

Parameters:
message - the message to be used
cause - the cause for this InvalidAtomMapException to be thrown

The Octet Molecular Representation Framework v0.8.2