?? 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 + -