📄 outofrangeexception.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 + -