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;
}
}