fix:gamma自动处理异常类

This commit is contained in:
orgin 2023-10-23 14:15:45 +08:00
parent fd7a0113e6
commit 0e0e102036

View File

@ -0,0 +1,19 @@
package org.jeecg.modules.exception;
/**
* B谱分析异常
*/
public class GAnalyseException 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 GAnalyseException(String message) {
super(message);
}
}