public class InvalidSmilesException
extends java.lang.Exception
| Modifier and Type | Field and Description |
|---|---|
private static java.lang.String |
lastError |
| Constructor and Description |
|---|
InvalidSmilesException()
Constructs a
InvalideSmilesException without any detail. |
InvalidSmilesException(java.lang.String message)
Constructs a
InvalidSmilesException with a detail message. |
InvalidSmilesException(java.lang.String message,
java.lang.Throwable cause)
Construcst a
InvalidSmilesException with the specified detail
message and cause. |
InvalidSmilesException(java.lang.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 java.lang.String |
getLastError() |
static void |
setLastError(java.lang.String message) |
public InvalidSmilesException()
InvalideSmilesException without any detail.public InvalidSmilesException(java.lang.String message)
InvalidSmilesException with a detail message.message - The detail message.public InvalidSmilesException(java.lang.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.public InvalidSmilesException(java.lang.String message,
java.lang.Throwable cause)
InvalidSmilesException with the specified detail
message and cause.message - The detail message.cause - The cause.