compilationexception.java
字号:
package piy;
/**
* Thrown when a project could not be compiled. Might want to specialise on
* specific reasons - get rid of this exception.
* @author David Vivash
* @version 1.0, 29/04/01
*/
public class CompilationException extends Exception {
public CompilationException(String message) {
super(message);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -