com.fastchar.pay.exception.WxPayException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar-pay Show documentation
Show all versions of fastchar-pay Show documentation
FastChar-Pay is a FastChar plugin.
The newest version!
package com.fastchar.pay.exception;
public class WxPayException extends RuntimeException {
private static final long serialVersionUID = -7312426516166496605L;
public WxPayException() {
super();
}
public WxPayException(String message) {
super(message);
}
public WxPayException(String message, Throwable cause) {
super(message, cause);
}
public WxPayException(Throwable cause) {
super(cause);
}
}