chemaxon.descriptors
Class MDGeneratorException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by chemaxon.descriptors.MDGeneratorException
All Implemented Interfaces:
java.io.Serializable

public class MDGeneratorException
extends java.lang.Exception

Exception definition for the MolecularDescriptor.generate() interface. This exception is thrown in the case of any error in generating a MolecularDescriptor.

Since:
JChem 2.0
Author:
Miklos Vargyas
See Also:
Serialized Form

Constructor Summary
MDGeneratorException()
          Creates new MDGeneratorException without detailed explanation.
MDGeneratorException(java.lang.String msg)
          Constructs a MDGeneratorException with the specified detailed message.
MDGeneratorException(java.lang.String message, java.lang.Throwable cause)
          Constructs a MDGeneratorException with the specified detail message and cause.
MDGeneratorException(java.lang.Throwable cause)
          Constructs a MDGeneratorException with the specified cause.
 
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

MDGeneratorException

public MDGeneratorException()
Creates new MDGeneratorException without detailed explanation.


MDGeneratorException

public MDGeneratorException(java.lang.String msg)
Constructs a MDGeneratorException with the specified detailed message.

Parameters:
msg - the detail message.

MDGeneratorException

public MDGeneratorException(java.lang.String message,
                            java.lang.Throwable cause)
Constructs a MDGeneratorException with the specified detail message and cause.

Parameters:
message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
cause - the cause
Since:
JChem 5.2.2

MDGeneratorException

public MDGeneratorException(java.lang.Throwable cause)
Constructs a MDGeneratorException with the specified cause.

Parameters:
cause - the cause
Since:
JChem 5.2.2