Package org.djutils.cli
Class CliException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.djutils.cli.CliException
- All Implemented Interfaces:
Serializable
CliException for exceptions of the CommandLine Interpreter.
Copyright (c) 2003-2018 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See for project information www.simulation.tudelft.nl. The source code and binary code of this software is proprietary information of Delft University of Technology.
Copyright (c) 2003-2018 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See for project information www.simulation.tudelft.nl. The source code and binary code of this software is proprietary information of Delft University of Technology.
- Author:
- Alexander Verbraeck
- See Also:
-
Constructor Summary
ConstructorDescriptionStandard CliException without explanation.CliException
(String message) CliException
(String message, Throwable cause) CliException
(Throwable cause) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CliException
public CliException()Standard CliException without explanation. -
CliException
- Parameters:
message
- String; the description of the exception
-
CliException
- Parameters:
cause
- Throwable; the cause of the exception
-
CliException
- Parameters:
message
- String; the description of the exceptioncause
- Throwable; the cause of the exception
-