初始代码

This commit is contained in:
slhaf
2024-09-09 10:44:04 +08:00
commit ac52ba3762
94 changed files with 3203 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package com.sky.exception;
/**
* 业务异常
*/
public class BaseException extends RuntimeException {
public BaseException() {
}
public BaseException(String msg) {
super(msg);
}
}