You've already forked FrameTour-BE
支付
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
package com.ycwl.basic.pay.exceptions;
|
||||
|
||||
public class PayException extends RuntimeException {
|
||||
public PayException(String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
package com.ycwl.basic.pay.exceptions;
|
||||
|
||||
public class PayUndefinedException extends RuntimeException {
|
||||
public PayUndefinedException(String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
package com.ycwl.basic.pay.exceptions;
|
||||
|
||||
public class PayUnsupportedException extends PayException {
|
||||
public PayUnsupportedException(String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
package com.ycwl.basic.pay.exceptions;
|
||||
|
||||
public class PayWrongConfigException extends PayException {
|
||||
public PayWrongConfigException(String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user