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

net.anotheria.anosite.wizard.api.exception.WizardAPIException Maven / Gradle / Ivy

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

import net.anotheria.anoplass.api.APIException;

/**
 * WizardAPI exception.
 *
 * @author h3ll
 */
public class WizardAPIException extends APIException {

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy