desktopunavailableexception.java

来自「ZK 基础介绍 功能操作 模块 结合数据库操作」· Java 代码 · 共 63 行

JAVA
63
字号
/* DesktopUnavailableException.java{{IS_NOTE	Purpose:			Description:			History:		Fri Aug  3 17:31:08     2007, Created by tomyeh}}IS_NOTECopyright (C) 2007 Potix Corporation. All Rights Reserved.{{IS_RIGHT	This program is distributed under GPL Version 2.0 in the hope that	it will be useful, but WITHOUT ANY WARRANTY.}}IS_RIGHT*/package org.zkoss.zk.ui;/** * Denotes the desktop being accessed is no longer available. * It is typical thrown when a server push is executing and the desktop * is removed by the client. See {@link Executions#activate} for more * information. * * @author tomyeh * @see Executions#activate * @since 3.0.0 */public class DesktopUnavailableException extends UiException {	public DesktopUnavailableException(String msg, Throwable cause) {		super(msg, cause);	}	public DesktopUnavailableException(String s) {		super(s);	}	public DesktopUnavailableException(Throwable cause) {		super(cause);	}	public DesktopUnavailableException() {	}	public DesktopUnavailableException(int code, Object[] fmtArgs, Throwable cause) {		super(code, fmtArgs, cause);	}	public DesktopUnavailableException(int code, Object fmtArg, Throwable cause) {		super(code, fmtArg, cause);	}	public DesktopUnavailableException(int code, Object[] fmtArgs) {		super(code, fmtArgs);	}	public DesktopUnavailableException(int code, Object fmtArg) {		super(code, fmtArg);	}	public DesktopUnavailableException(int code, Throwable cause) {		super(code, cause);	}	public DesktopUnavailableException(int code) {		super(code);	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?