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 cannot be parsed.
21: *
22: * More information about this class and code samples for suggested use are
23: * available from <a target="_top" href=
24: * "http://ostermiller.org/utils/CmdLn.html">ostermiller.org</a>.
25: *
26: * @author Stephen Ostermiller http://ostermiller.org/contact.pl?regarding=Java+Utilities
27: * @since ostermillerutils 1.07.00
28: */
29: public class CmdLnException extends IllegalArgumentException {
30: /**
31: * serial version id
32: *
33: * @since ostermillerutils 1.07.00
34: */
35: private static final long serialVersionUID = 3984942697362044497L;
36:
37: /**
38: * @param message detail message
39: *
40: * @since ostermillerutils 1.07.00
41: */
42: CmdLnException(String message) {
43: super(message);
44: }
45: }
|