notsupportexception.class.js
来自「《JavaScript王者归来》examples.rar」· JavaScript 代码 · 共 32 行
JS
32 行
# language: JSVM2
/**
* @fileoverview js.lang.NotSupportException class {@link http://jsvm.org/}
* @file NotSupportException.jsc
* @author Wan Changhua * @version 2.01, 10/23/05 * @since JSVM2.0
*/
package js.lang;
import js.lang.Exception;
/** * Constructs a new unsupported exception with the
* specified detail message and cause
* Inherit from Exception
* @author Wan Changhua
* @version 2.01, 10/23/05 * @extends Exception * @class this is a NotSupportException class
* @constructor * @return A new NotSupportException
* @see Exception js.lang.Exception is the base class for this */
class NotSupportException extends Exception () {
super.apply(this, arguments.length > 0 ?
arguments : ["System don't support!"]);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?