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

org.openxri.resolve.exception.RefNotFollowedException Maven / Gradle / Ivy

The newest version!
/**
 * 
 */
package org.openxri.resolve.exception;


/**
 * @author wtan
 *
 */
public class RefNotFollowedException extends XRIResolutionException {
	protected String unresolved = null;

	/**
	 * @param unresolved
	 * @param sMsg
	 */
	public RefNotFollowedException(String unresolved, String sMsg) {
		super(sMsg + " (" + unresolved + ")");
		this.unresolved = unresolved;
	}
	
	/**
	 * @param unresolved
	 */
	public RefNotFollowedException(String unresolved) {
		super("Ref not followed while unresolved segment exists: " + unresolved);
		this.unresolved = unresolved;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy