fix:1.添加能谱文件未找到自定义异常

This commit is contained in:
panbaolin 2023-08-30 18:58:46 +08:00
parent 37b1eecd7d
commit 26ec3e3f19

View File

@ -0,0 +1,19 @@
package org.jeecg.modules.exception;
/**
* 能谱文件不存在异常
*/
public class FileNotExistException extends Exception{
/**
* Constructs a new exception with the specified detail message. The
* cause is not initialized, and may subsequently be initialized by
* a call to {@link #initCause}.
*
* @param message the detail message. The detail message is saved for
* later retrieval by the {@link #getMessage()} method.
*/
public FileNotExistException(String message) {
super(message);
}
}