1 7 8 package java.awt.dnd; 9 10 19 20 public class InvalidDnDOperationException extends IllegalStateException { 21 22 static private String dft_msg = "The operation requested cannot be performed by the DnD system since it is not in the appropriate state"; 23 24 27 28 public InvalidDnDOperationException() { super(dft_msg); } 29 30 35 36 public InvalidDnDOperationException(String msg) { super(msg); } 37 38 } 39 40 41 42 | Popular Tags |