最新产品

This commit is contained in:
ZZX9599
2025-09-08 17:01:50 +08:00
commit 8056245ade
119 changed files with 8281 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package com.yj.earth.common.exception;
public class UnAuthException extends RuntimeException{
/**
* 带异常信息的构造方法
*/
public UnAuthException(String message) {
super(message);
}
}