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

📄 outofrangeexception.java

📁 一些JAVA程序
💻 JAVA
字号:
/*!Begin Snippet:file*/
/**
 * Thrown when an out-of-range error occurs.
 *
 * @author  iCarnegie
 * @version 1.0.0
 */
public class OutOfRangeException extends Exception  {

	/**
	 * Constructs a new instance of <code>OutOfRangeException</code>.
	 */
	public OutOfRangeException() {

	}

	/**
	 * Constructs a new instance of <code>OutOfRangeException</code>
	 * that includes an explanation.
	 *
	 * @param message  Additional information about this exception.
	 *                     Can be null.
	 */
	public OutOfRangeException(String message) {

		super(message);
	}
}
/*!End Snippet:file*/

⌨️ 快捷键说明

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