Package chemaxon.descriptors
Class MDGeneratorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- chemaxon.descriptors.MDGeneratorException
-
- All Implemented Interfaces:
Serializable
@PublicAPI public class MDGeneratorException extends Exception
Exception definition for theMolecularDescriptor.generate()
interface. This exception is thrown in the case of any error in generating aMolecularDescriptor
.- Since:
- JChem 2.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MDGeneratorException()
Creates newMDGeneratorException
without detailed explanation.MDGeneratorException(String msg)
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 Detail
-
MDGeneratorException
public MDGeneratorException()
Creates newMDGeneratorException
without detailed explanation.
-
MDGeneratorException
public MDGeneratorException(String msg)
Constructs aMDGeneratorException
with the specified detailed message.- Parameters:
msg
- the detail message.
-
MDGeneratorException
public MDGeneratorException(String message, Throwable cause)
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
public MDGeneratorException(Throwable cause)
Constructs aMDGeneratorException
with the specified cause.- Parameters:
cause
- the cause- Since:
- JChem 5.2.2
-
-