dataformatexception.java
来自「SSD3 实验5的上交文件 自己实验做得」· Java 代码 · 共 34 行
JAVA
34 行
/**
* This exception is thrown when malformed data is detected while
* a file being parsed.
*
* @author author name
* @version 1.0.0
*/
public class DataFormatException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* Constructs a <code>DataFormatException</code> with no detail
* message.
*/
public DataFormatException() {
}
/**
* Constructs a <code>DataFormatException</code> with the
* specified detail message.
*
* @param message the malformed data
*/
public DataFormatException(String message) {
super(message);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?