⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 notsupportexception.jsc

📁 《JavaScript王者归来》examples.rar
💻 JSC
字号:
# 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 (msg)
{
	if (msg == null)
	{
		arguments = ["System don't support!"];
	}
	super.apply(this, arguments);
}

⌨️ 快捷键说明

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