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

net.anotheria.anosite.photoserver.service.blur.BlurSettingsServiceException Maven / Gradle / Ivy

The newest version!
package net.anotheria.anosite.photoserver.service.blur;

/**
 * BlurSettingsService exception.
 *
 * @author h3ll
 * @version $Id: $Id
 */
public class BlurSettingsServiceException extends Exception {

	/**
	 * Basic serial version UID.
	 */
	private static final long serialVersionUID = -8202192757709523004L;

	/**
	 * Constructor.
	 *
	 * @param message cause message
	 */
	public BlurSettingsServiceException(String message) {
		super(message);
	}

	/**
	 * Constructor.
	 *
	 * @param message cause message
	 * @param cause   {@link java.lang.Throwable} reason
	 */
	public BlurSettingsServiceException(String message, Throwable cause) {
		super(message, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy