苍穹外卖初始项目

This commit is contained in:
zvv
2026-03-24 16:44:37 +08:00
commit 1f858de9c1
94 changed files with 3203 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package com.sky.exception;
/**
* 密码修改失败异常
*/
public class PasswordEditFailedException extends BaseException{
public PasswordEditFailedException(String msg){
super(msg);
}
}