GZMachinesWeb/.svn/pristine/6d/6d27ec6d5e387a6f1519e35a074...

18 lines
427 B
Plaintext
Raw Normal View History

2025-06-20 17:47:53 +08:00
package com.bonus.core.qrcode;
/**
* @description
* @author Abel.lin
* @date 2016年7月10日 下午4:41:41
*/
public class QRParamsException extends Exception {
private static final long serialVersionUID = 8837582301762730656L;
public QRParamsException() {
} // 用来创建无参数对象
public QRParamsException(String message) { // 用来创建指定参数对象
super(message); // 调用超类构造器
}
}