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
ConstructorsConstructorDescriptionCreates newMDGeneratorExceptionwithout detailed explanation.Constructs aMDGeneratorExceptionwith the specified detailed message.MDGeneratorException(String message, Throwable cause) Constructs aMDGeneratorExceptionwith the specified detail message and cause.MDGeneratorException(Throwable cause) Constructs aMDGeneratorExceptionwith 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 newMDGeneratorExceptionwithout detailed explanation. -
MDGeneratorException
Constructs aMDGeneratorExceptionwith the specified detailed message.- Parameters:
msg- the detail message.
-
MDGeneratorException
Constructs aMDGeneratorExceptionwith 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 aMDGeneratorExceptionwith the specified cause.- Parameters:
cause- the cause- Since:
- JChem 5.2.2
-