Package chemaxon.descriptors
Class MDGeneratorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
chemaxon.descriptors.MDGeneratorException
- All Implemented Interfaces:
Serializable
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
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates newMDGeneratorException
without detailed explanation.Constructs aMDGeneratorException
with the specified detailed message.MDGeneratorException
(String message, Throwable cause) Constructs aMDGeneratorException
with the specified detail message and cause.MDGeneratorException
(Throwable cause) Constructs aMDGeneratorException
with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MDGeneratorException
public MDGeneratorException()Creates newMDGeneratorException
without detailed explanation. -
MDGeneratorException
Constructs aMDGeneratorException
with the specified detailed message.- Parameters:
msg
- the detail message.
-
MDGeneratorException
Constructs aMDGeneratorException
with the specified detail message and cause.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause- Since:
- JChem 5.2.2
-
MDGeneratorException
Constructs aMDGeneratorException
with the specified cause.- Parameters:
cause
- the cause- Since:
- JChem 5.2.2
-