fix:gamma自动处理异常类
This commit is contained in:
parent
fd7a0113e6
commit
0e0e102036
|
@ -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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user