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 discovers an option that requires an argument, but that
10: * argument is missing.
11: *
12: * @since 1.0
13: * @author <a href="mailto:pholser@alumni.rice.edu">Paul Holser</a>
14: * @version $Id: OptionMissingRequiredArgumentException.java,v 1.9 2007/04/10 20:06:25 pholser Exp $
15: */
16: class OptionMissingRequiredArgumentException extends OptionException {
17: private static final long serialVersionUID = -1L;
18:
19: OptionMissingRequiredArgumentException(String option) {
20: super(option);
21: }
22: }
|