This commit is contained in:
2025-04-16 14:37:24 +08:00
parent 8ac386242d
commit f6f847e41c
20 changed files with 713 additions and 54 deletions

View File

@@ -0,0 +1,7 @@
package com.ycwl.basic.pay.exceptions;
public class PayException extends RuntimeException {
public PayException(String message) {
super(message);
}
}