初始版本

This commit is contained in:
zzs
2017-02-17 18:24:33 +08:00
parent efc0210c21
commit 027c84299a
80 changed files with 7642 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
package in.egan.pay.common.exception;
import in.egan.pay.common.bean.result.PayError;
/**
* @author egan
* @email egzosn@gmail.com
* @date 2016-5-18 14:09:01
*/
public class PayErrorException extends Exception {
private PayError error;
public PayErrorException(PayError error) {
super(error.toString());
this.error = error;
}
public PayError getError() {
return error;
}
}