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

com.luoshu.open.id.ui.exception.IdUIPermException Maven / Gradle / Ivy

There is a newer version: 0.32
Show newest version
package com.luoshu.open.id.ui.exception;

/**
 * @author inme
 */
public class IdUIPermException extends RuntimeException{

    public IdUIPermException() {
    }

    public IdUIPermException(String message) {
        super(message);
    }

    public IdUIPermException(String message, Throwable cause) {
        super(message, cause);
    }

    public IdUIPermException(Throwable cause) {
        super(cause);
    }

    public IdUIPermException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy