01: /*
02: * @author $Author: rahul_kumar $ $Id: InvalidBindingException.java,v 1.1 2003/12/28 07:44:08 rahul_kumar Exp $
03: *
04: */
05:
06: package isql;
07:
08: /**
09: * An invalid key binding.
10: *
11: *
12: * @author $Author: rahul_kumar $
13: * @version 1
14: * @since JDK1.4
15: */
16: public class InvalidBindingException extends Exception {
17: /**
18: * Constructs an <code>InvalidBindingException</code> with <code>null</code>
19: * as its error detail message.
20: */
21: public InvalidBindingException() {
22: super ("Invalid Key Binding Requested");
23: }
24:
25: /**
26: * Constructs an <code>DeviceIOException</code> with the specified detail
27: * message. The error message string <code>s</code> can later be
28: * retrieved by the <code>{@link java.lang.Throwable#getMessage}</code>
29: * method of class <code>java.lang.Throwable</code>.
30: *
31: * @param s the detail message.
32: */
33: public InvalidBindingException(String s) {
34: super(s);
35: }
36: }
|