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

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

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

public class QrCodeServletException extends RuntimeException {

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy