01: /*
02: * Copyright (C) 2007 Stephen Ostermiller
03: * http://ostermiller.org/contact.pl?regarding=Java+Utilities
04: *
05: * This program is free software; you can redistribute it and/or modify
06: * it under the terms of the GNU General Public License as published by
07: * the Free Software Foundation; either version 2 of the License, or
08: * (at your option) any later version.
09: *
10: * This program is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13: * GNU General Public License for more details.
14: *
15: * See COPYING.TXT for details.
16: */
17: package com.Ostermiller.util;
18:
19: /**
20: * Exception thrown when a command line option is missing an argument
21: */
22: public class MissingCmdLnArgumentException extends
23: CmdLnArgumentException {
24: /**
25: * serial version id
26: */
27: private static final long serialVersionUID = -8552921685243918697L;
28:
29: /**
30: * Construct a new exception.
31: */
32: MissingCmdLnArgumentException() {
33: super ("Additional argument required");
34: }
35:
36: }
|