
top.lshaci.framework.web.exception.RolePermissionException Maven / Gradle / Ivy
package top.lshaci.framework.web.exception;
public class RolePermissionException extends RuntimeException {
private static final long serialVersionUID = 1L;
public RolePermissionException() {
}
public RolePermissionException(String message) {
super(message);
}
public RolePermissionException(Throwable cause) {
super(cause);
}
public RolePermissionException(String message, Throwable cause) {
super(message, cause);
}
public RolePermissionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy