net.sf.javaprinciples.resource.ResourceNotFoundException Maven / Gradle / Ivy
package net.sf.javaprinciples.resource;
/**
*
* @author wslade
*
*/
public class ResourceNotFoundException extends ResourceException
{
/**
*
*/
private static final long serialVersionUID = 1L;
/**
*
* @param message The reason the resource was not found.
*/
public ResourceNotFoundException(String message)
{
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy