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

net.anotheria.anosite.wizard.handler.exceptions.WizardHandlerException Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package net.anotheria.anosite.wizard.handler.exceptions;

/**
 * WizardHandlerException class.
 *
 * @author h3ll
 */
public class WizardHandlerException extends Exception {

	/**
	 * Basic serial version uid.
	 */
	private static final long serialVersionUID = -8670792529679115845L;

	/**
	 * Constructor.
	 *
	 * @param message string message
	 */
	public WizardHandlerException(String message) {
		super(message);
	}

	/**
	 * Constructor.
	 *
	 * @param message string message
	 * @param cause   exception cause
	 */
	public WizardHandlerException(String message, Throwable cause) {
		super(message, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy