1 10 11 package swingwt.awt.dnd; 12 13 public class InvalidDnDOperationException extends IllegalStateException { 14 static private String 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 msg) { super(msg); } 19 20 } 21 | Popular Tags |