![JAR search and dependency download from the Maven repository](/logo.png)
net.anotheria.anodoc.data.NoSuchDataHolderException Maven / Gradle / Ivy
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