* @throws InvalidParameterValueEx hmm
*/
private void checkResponseHandler(String responseHandler) throws InvalidParameterValueEx {
this.protocol = Protocol.validate(responseHandler);
if(this.protocol == null) {
throw new InvalidParameterValueEx("ResponseHandler", "Unsupported protocol in responseHandler " + responseHandler + ". Supported protocols are: ftp://, http://, and mailto:");
}
if(Log.isDebugEnabled(Geonet.CSW_HARVEST))
Log.debug(Geonet.CSW_HARVEST, "CSW Harvest checkResponseHandler: OK");
}