org.openxri.resolve.exception.AuthResNotFoundException Maven / Gradle / Ivy
The newest version!
/**
*
*/
package org.openxri.resolve.exception;
/**
* This exception is raised during the authority resolution process when
* neither an authority resolution service nor Ref is found.
*
* @author wtan
*
*/
public class AuthResNotFoundException extends XRIResolutionException {
/**
* @param msg
*/
public AuthResNotFoundException(String msg) {
super(msg);
}
}