Blame view

src/main/java/com/jfinal/weixin/sdk/utils/PaymentException.java 465 Bytes
e80df919   atao   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  package com.jfinal.weixin.sdk.utils;
  
  /**
   * 支付异常
   * @author L.cm
   *
   */
  public class PaymentException extends Exception {
  	private static final long serialVersionUID = 6615472990468215919L;
  
  	public PaymentException() {
  		super();
  	}
  
  	public PaymentException(String message, Throwable cause) {
  		super(message, cause);
  	}
  
  	public PaymentException(String message) {
  		super(message);
  	}
  
  	public PaymentException(Throwable cause) {
  		super(cause);
  	}
  	
  }