All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.aqiu202.qrcode.exp.QrCodeException Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.github.aqiu202.qrcode.exp;

public class QrCodeException extends RuntimeException {

    public QrCodeException(String msg) {
        super(msg);
    }

    public QrCodeException(Throwable e) {
        super(e);
    }

    public QrCodeException(String msg, Throwable e) {
        super(msg, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy