badworldformatexception.java
来自「SIMULATION FOURMILIERE -3D-ISOMETRIQUE」· Java 代码 · 共 16 行
JAVA
16 行
package fr.umlv.fourmIR2000.world;
public final class BadWorldFormatException extends Exception {
/** For serialization : version of the class */
private static final long serialVersionUID = 1L;
/**
* Constructor of the exception
* @param msg the message to print on the exception
*/
BadWorldFormatException(String msg) {
super(msg);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?