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

org.esfinge.guardian.rbac.exception.RbacMisuseException Maven / Gradle / Ivy

There is a newer version: 1.2.3
Show newest version
package org.esfinge.guardian.rbac.exception;

@SuppressWarnings("serial")
public class RbacMisuseException extends RuntimeException {
	public RbacMisuseException(Throwable cause) {
		super(cause);
	}
	
	public RbacMisuseException(String message) {
		super(message);
	}
	
	public RbacMisuseException(String message, Throwable cause) {
		super(message, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy