invaliddndoperationexception.java
来自「JAVA基本类源代码,大家可以学习学习!」· Java 代码 · 共 42 行
JAVA
42 行
/* * @(#)InvalidDnDOperationException.java 1.11 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package java.awt.dnd;/** * This exception is thrown by various methods in the java.awt.dnd package. * It is usually thrown to indicate that the target in question is unable * to undertake the requested operation that the present time, since the * undrelying DnD system is not in the appropriate state. * * @version 1.11, 01/23/03 * @since 1.2 */public class InvalidDnDOperationException extends IllegalStateException { static private String dft_msg = "The operation requested cannot be performed by the DnD system since it is not in the appropriate state"; /** * Create a default Exception */ public InvalidDnDOperationException() { super(dft_msg); } /** * Create an Exception with its own descriptive message * <P> * @param msg the detail message */ public InvalidDnDOperationException(String msg) { super(msg); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?