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

freak.core.modulesupport.InvalidPropertyException Maven / Gradle / Ivy

There is a newer version: 0.4.7
Show newest version
/*
 * This file is part of FrEAK. For licensing and copyright information
 * please see the file COPYING in the root directory of this
 * distribution or contact .
 */

package freak.core.modulesupport;

/**
 * Is thrown if a module contains invalid property settings that must be 
 * corrected by the user before doing something else.
 * 
 * @author Dirk
 */

public class InvalidPropertyException extends Exception {

	/**
	 * Constructs a new InvalidPropertyException without a 
	 * detail message.
	 */
	public InvalidPropertyException() {
		super();
	}

	/**
	 * Constructs a new InvalidPropertyException with the 
	 * specified detail message.
	 * 
	 * @param message the detail message.
	 */
	public InvalidPropertyException(String message) {
		super(message);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy