Package chemaxon.marvin.io
Class MolExportException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- chemaxon.marvin.io.MolExportException
-
- All Implemented Interfaces:
Serializable
@PublicAPI public class MolExportException extends IOException
Molecule export exception.- Since:
- Marvin 3.0, 12/25/2002
- See Also:
MolExportModule
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MolExportException(String s)
Creates a molecule export exception with the specified message.MolExportException(String s, Throwable cause)
Creates a molecule export exception with the specified message and cause.MolExportException(Throwable cause)
Creates a molecule export exception with the specified cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getMolIndex()
Returns the molecule index.void
setMolIndex(int molIndex)
Sets the molecule index.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
MolExportException
public MolExportException(String s)
Creates a molecule export exception with the specified message.- Parameters:
s
- the message
-
MolExportException
public MolExportException(String s, Throwable cause)
Creates a molecule export exception with the specified message and cause.- Since:
- Marvin 4.1, 03/29/2006
-
MolExportException
public MolExportException(Throwable cause)
Creates a molecule export exception with the specified cause.- Since:
- Marvin 4.1, 03/29/2006
-
-