![JAR search and dependency download from the Maven repository](/logo.png)
cn.z.qrcode.encoder.QRCodeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qrcode-encoder Show documentation
Show all versions of qrcode-encoder Show documentation
QR Code Encoder For Java 二维码生成器Java版
package cn.z.qrcode.encoder;
/**
* QRCode异常类
*
*
* createDate 2023/05/29 11:11:11
*
*
* @author ALI[[email protected]]
* @since 1.0.0
**/
public class QRCodeException extends RuntimeException {
/**
* QRCode异常
*/
public QRCodeException() {
super();
}
/**
* QRCode异常
*
* @param message 信息
*/
public QRCodeException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy