Class AlreadySelectedException

All Implemented Interfaces:
Serializable

public class AlreadySelectedException extends OptionParserException
Thrown when more than one option in an option group has been provided.
See Also:
  • Constructor Details

    • AlreadySelectedException

      public AlreadySelectedException(String message)
      Construct a new AlreadySelectedException with the specified detail message.
      Parameters:
      message - the detail message
    • AlreadySelectedException

      public AlreadySelectedException(@NonNull OptionGroup group, @NonNull Option option)
      Construct a new AlreadySelectedException for the specified option group.
      Parameters:
      group - the option group already selected
      option - the option that triggered the exception
  • Method Details

    • getOptionGroup

      public OptionGroup getOptionGroup()
      Returns the option group where another option has been selected.
      Returns:
      the related option group
    • getOption

      public Option getOption()
      Returns the option that was added to the group and triggered the exception.
      Returns:
      the related option