📄 invaliddndoperationexception.java
字号:
/* * @(#)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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -