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

org.esfinge.guardian.abac.exception.MalformedELException Maven / Gradle / Ivy

The newest version!
package org.esfinge.guardian.abac.exception;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy