删除不必要的文件

This commit is contained in:
wzy-warehouse
2026-06-18 20:35:53 +08:00
parent bc5b6fe50a
commit c04b985ce6
2 changed files with 0 additions and 54 deletions
@@ -1,27 +0,0 @@
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);
}
}
@@ -1,27 +0,0 @@
package com.gis.xian.service.ex;
/**
* @author zzw
* @description: 服务异常
* @date 2026/5/25 下午5:41
*/
public class ServeException extends ServiceException {
public ServeException() {
}
public ServeException(String message) {
super(message);
}
public ServeException(String message, Throwable cause) {
super(message, cause);
}
public ServeException(Throwable cause) {
super(cause);
}
public ServeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}