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

org.usf.jquery.web.NoSuchResourceException Maven / Gradle / Ivy

package org.usf.jquery.web;

import static java.lang.String.format;

/**
 * 
 * @author u$f
 *
 */
@SuppressWarnings("serial")
public final class NoSuchResourceException extends WebException {

	public NoSuchResourceException(String s) {
		super(s);
	}
	
	static NoSuchResourceException noSuchResourceException(String type, String resource) {
		return new NoSuchResourceException(format("no such %s: '%s'", type, resource));
	}

	static NoSuchResourceException undeclaredResouceException(String child, String parent) {
		return new NoSuchResourceException(format("'%s' is not member of '%s'", child, parent));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy