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

java.security.SecurityException Maven / Gradle / Ivy

package java.security;

public class SecurityException extends RuntimeException {
	public SecurityException() {
		super();
	}

	public SecurityException(String s) {
		super(s);
	}

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy