public class InvalidSmilesException extends Exception
Constructor and Description |
---|
InvalidSmilesException()
Constructs a
InvalideSmilesException without any detail. |
InvalidSmilesException(String message)
Constructs a
InvalidSmilesException with a detail message. |
InvalidSmilesException(String message,
Throwable cause)
Construcst a
InvalidSmilesException with the specified detail
message and cause. |
InvalidSmilesException(Throwable cause)
Contructs a
InvalidSmilesException with the specified cause and
a detail message of (cause == null ? null : cause.toString())
(which typically contains the class and detail message of cause). |
Modifier and Type | Method and Description |
---|---|
static String |
getLastError() |
static void |
setLastError(String message) |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
private static String lastError
public InvalidSmilesException()
InvalideSmilesException
without any detail.public InvalidSmilesException(String message)
InvalidSmilesException
with a detail message.message
- The detail message.public InvalidSmilesException(Throwable cause)
InvalidSmilesException
with the specified cause and
a detail message of (cause == null ? null : cause.toString())
(which typically contains the class and detail message of cause).cause
- The cause.