com.luoshu.open.id.ui.exception.IdUIPermException Maven / Gradle / Ivy
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