Package chemaxon.common.util
Class ArgumentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
chemaxon.common.util.ArgumentException
- All Implemented Interfaces:
Serializable
Checked exception to indicate that a tool has been passed an illegal argument, typically used for CLI.
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates a new instance ofArgumentException
without detail message.ArgumentException
(String msg) Constructs an instance ofArgumentException
with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ArgumentException
public ArgumentException()Creates a new instance ofArgumentException
without detail message. -
ArgumentException
Constructs an instance ofArgumentException
with the specified detail message.- Parameters:
msg
- the detail message.
-