01: /*
02: * Copyright (C) 2003-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:
18: package com.Ostermiller.util;
19:
20: /**
21: * An Illegal delimiter was specified.
22: * <p>
23: * This class exists to fix a spelling error in BadDelimeterException.
24: *
25: * @author Stephen Ostermiller http://ostermiller.org/contact.pl?regarding=Java+Utilities
26: * @since ostermillerutils 1.02.20
27: * @see BadDelimeterException
28: */
29: public class BadDelimiterException extends BadDelimeterException {
30:
31: /**
32: * Serial Version ID
33: */
34: private static final long serialVersionUID = -3250803278822032684L;
35:
36: /**
37: * Constructs an exception with null as its error detail message.
38: *
39: * @since ostermillerutils 1.02.20
40: */
41: public BadDelimiterException() {
42: super ();
43: }
44:
45: /**
46: * Constructs an exception with the specified detail message.
47: * The error message string s can later be retrieved by the
48: * Throwable.getMessage() method of class java.lang.Throwable.
49: *
50: * @param s the detail message.
51: * @since ostermillerutils 1.02.20
52: */
53: public BadDelimiterException(String s) {
54: super(s);
55: }
56: }
|