KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > swingwt > awt > dnd > InvalidDnDOperationException


1 /*
2    SwingWT
3    Copyright(c)2003-2004, Tomer Barletz
4
5    For more information on distributing and using this program, please
6    see the accompanying "COPYING" file.
7
8    Contact me by electronic mail: tomerb@users.sourceforge.net
9 */

10
11 package swingwt.awt.dnd;
12
13 public class InvalidDnDOperationException extends IllegalStateException JavaDoc {
14   static private String JavaDoc dft_msg = "The operation requested cannot be performed by the DnD system since it is not in the appropriate state";
15
16   public InvalidDnDOperationException() { super(dft_msg); }
17
18   public InvalidDnDOperationException(String JavaDoc msg) { super(msg); }
19
20 }
21
Popular Tags