📄 illegalsyntaxexception.java
字号:
/* IllegalSyntaxException.java{{IS_NOTE Purpose: Description: History: 2001/10/25 10:31:13, Create, Tom M. Yeh.}}IS_NOTECopyright (C) 2001 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.util;import org.zkoss.lang.SystemException;/** * Represents a syntax error. * * @author tomyeh */public class IllegalSyntaxException extends SystemException { public IllegalSyntaxException(String msg, Throwable cause) { super(msg, cause); } public IllegalSyntaxException(String msg) { super(msg); } public IllegalSyntaxException(Throwable cause) { super(cause); } public IllegalSyntaxException() { } public IllegalSyntaxException (int code, Object[] fmtArgs, Throwable cause) { super(code, fmtArgs, cause); } public IllegalSyntaxException (int code, Object fmtArg, Throwable cause) { super(code, fmtArg, cause); } public IllegalSyntaxException(int code, Object[] fmtArgs) { super(code, fmtArgs); } public IllegalSyntaxException(int code, Object fmtArg) { super(code, fmtArg); } public IllegalSyntaxException(int code, Throwable cause) { super(code, cause); } public IllegalSyntaxException(int code) { super(code); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -