Package org.elasticsearch.cli
Class UserException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.elasticsearch.cli.UserException
-
- All Implemented Interfaces:
Serializable
public class UserException extends Exception
An exception representing a user fixable problem inCommandusage.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description intexitCodeThe exist status the cli should use when catching this user error.
-
Constructor Summary
Constructors Constructor Description UserException(int exitCode, String msg)Constructs a UserException with an exit status and message to show the user.UserException(int exitCode, String msg, Throwable cause)Constructs a new user exception with specified exit status, message, and underlying cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UserException
public UserException(int exitCode, String msg)Constructs a UserException with an exit status and message to show the user.
-
-