📄 xawkexception.java
字号:
/* XawkException.java{{IS_NOTE Purpose: Description: History: Mon Sep 2 20:59:27 2002, Created by tomyeh}}IS_NOTECopyright (C) 2002 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.xawk;/** * Represents Xawk fails to parse a XML. * * @author tomyeh * @see Xawk */public class XawkException extends org.zkoss.lang.CommonException { public XawkException(String msg, Throwable cause) { super(msg, cause); } public XawkException(String s) { super(s); } public XawkException(Throwable cause) { super(cause); } public XawkException() { } public XawkException(int code, Object[] fmtArgs, Throwable cause) { super(code, fmtArgs, cause); } public XawkException(int code, Object fmtArg, Throwable cause) { super(code, fmtArg, cause); } public XawkException(int code, Object[] fmtArgs) { super(code, fmtArgs); } public XawkException(int code, Object fmtArg) { super(code, fmtArg); } public XawkException(int code, Throwable cause) { super(code, cause); } public XawkException(int code) { super(code); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -