包名修改

This commit is contained in:
zzs
2017-04-10 09:22:17 +08:00
parent 174f602dd7
commit 7152f001e4
100 changed files with 564 additions and 515 deletions

View File

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