/** * */ package jframe.pay.domain; /** * @author dzh * @date Aug 6, 2014 4:56:07 PM * @since 1.0 */ public class PayException extends Exception { /** * */ private static final long serialVersionUID = 1L; public PayException() { super(); } public PayException(String message) { super(message); } }