Class InvalidOptionException

Object
Throwable
Exception
InvalidOptionException
All Implemented Interfaces:
Serializable

public class InvalidOptionException extends Exception
Thrown when an illegal option has been given by the user on the command-line.
Since:
0.3
See Also:
  • Constructor Details

    • InvalidOptionException

      public InvalidOptionException(String message, String option)
      Constructs an exception with the specified detail message.
      Parameters:
      message - the detail message.
      option - the name of the invalid option.
    • InvalidOptionException

      public InvalidOptionException(String message, Throwable cause, String option)
      Constructs an exception with the specified detail message and cause.
      Parameters:
      message - the detail message.
      cause - the cause of this exception.
      option - the name of the invalid option.
  • Method Details

    • getOption

      public String getOption()
      Returns the name of the invalid option.
      Returns:
      the name of the invalid option.