Package org.anchoranalysis.launcher
Class CommandLineException
Object
Throwable
Exception
RuntimeException
AnchorRuntimeException
AnchorFriendlyRuntimeException
CommandLineException
- All Implemented Interfaces:
Serializable
,HasFriendlyErrorMessage
An exception thrown at run-time while processing command-line arguments.
This exception extends AnchorFriendlyRuntimeException
to provide user-friendly error
messages.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCommandLineException
(String message) Constructs a new CommandLineException with the specified detail message. -
Method Summary
Methods inherited from class org.anchoranalysis.core.exception.friendly.AnchorFriendlyRuntimeException
friendlyMessage, friendlyMessageHierarchy, friendlyMessageHierarchy
Methods inherited from class org.anchoranalysis.core.exception.AnchorRuntimeException
toString
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
CommandLineException
Constructs a new CommandLineException with the specified detail message.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method)
-