📄 exception.jsc
字号:
# language: native
/**
* @fileoverview js.lang.Exception class {@link http://jsvm.org/}
* @file Exception.jsc
* @author Wan Changhua * @version 2.01, 10/23/05 * @since JSVM2.0
*/
_$package("js.lang");
/** * Create a new Exception instance.
* @class This is the basic Exception class.
* @author Wan Changhua * @version 2.01, 10/23/05
* @extends _JSVM_Namespace.kernel.Exception
* @constructor * @return A new Exception
*/
js.lang.Exception = function (message, cause)
{
js.lang.Exception.$super.call(this, 0, message, cause);
}
js.lang.Exception.$extends(_JSVM_Namespace.kernel.Exception);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -