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

org.esfinge.guardian.mac.exception.NegativeSensitivityLevelException Maven / Gradle / Ivy

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy