QGIS地震专题图产出

This commit is contained in:
zzw
2026-06-02 17:10:57 +08:00
parent 6bb5cf46f7
commit e2c013c86b
@@ -0,0 +1,27 @@
package com.gis.xian.service.ex;
/**
* @author zzw
* @description: 参数异常处理
* @date 2026/5/25 下午5:36
*/
public class ParmaException extends ServiceException{
public ParmaException() {
}
public ParmaException(String message) {
super(message);
}
public ParmaException(String message, Throwable cause) {
super(message, cause);
}
public ParmaException(Throwable cause) {
super(cause);
}
public ParmaException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}