@Override
public void startPrefixMapping(String prefix, String uri) throws SAXException {
if(uri.equals(UNSUPPORTED_NS)) {
String msg = Messages.ERRMSG_UNSUPPORTED_REDMINE_VERSION;
throw new SAXException(msg, new RedmineApiRemoteException(msg));
}
if(!uri.equals(SUPPORTED_NS)) {
String msg = Messages.ERRMSG_INVALID_REDMINE_URL;
throw new SAXException(msg, new RedmineApiRemoteException(msg));
}
super.startPrefixMapping(prefix, uri);
}