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

net.anotheria.anodoc.data.NoSuchDataHolderException Maven / Gradle / Ivy

There is a newer version: 4.3.0
Show newest version
package net.anotheria.anodoc.data;

/**
 * This exception will be thrown if a not existing DataHolder was requested.
 *
 * @author another
 * @version $Id: $Id
 */
public class NoSuchDataHolderException extends RuntimeException{
	/**
	 * SerialVersionUID.
	 */
	private static final long serialVersionUID = 1L;

	/**
	 * Creates a new exception with the given data holder name.
	 *
	 * @param name a {@link java.lang.String} object.
	 */
	public NoSuchDataHolderException(String name){
		super("No such data holder "+name);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy