01: /*
02: Copyright 2004-2007 Paul R. Holser, Jr. All rights reserved.
03: Licensed under the Academic Free License version 3.0
04: */
05:
06: package joptsimple;
07:
08: /**
09: * Thrown when the option parser encounters an unrecognized option.
10: *
11: * @since 1.0
12: * @author <a href="mailto:pholser@alumni.rice.edu">Paul Holser</a>
13: * @version $Id: UnrecognizedOptionException.java,v 1.9 2007/04/10 20:06:25 pholser Exp $
14: */
15: class UnrecognizedOptionException extends OptionException {
16: private static final long serialVersionUID = -1L;
17:
18: UnrecognizedOptionException(String option) {
19: super(option);
20: }
21: }
|