arrayindexoutofboundsexception.js

来自「JSVM核心类库,收集了JAVA进行JSVM开发必用技术进行归纳,在实际项目应用」· JavaScript 代码 · 共 15 行

JS
15
字号
// Description:	ArrayIndexOutOfBoundsException 超出数组范围异常
// Author:	Changhua.Wan
// Version:	2004.01.26.01

_package("js.lang");

_import("js.lang.Exception");

function js.lang.ArrayIndexOutOfBoundsException(_msg) {
	if (typeof(_msg) == "undefined") _msg = "数组下标越界异常";
	js.lang.ArrayIndexOutOfBoundsException._base.call(this, _msg);
}

js.lang.ArrayIndexOutOfBoundsException._extends("js.lang.Exception");

⌨️ 快捷键说明

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