}
if (result == null) {
StringBuilder builder = new StringBuilder(
"Failed to find configuration matching id = ");
builder.append(id);
throw new ScanNotFoundException(builder.toString());
}
else {
return result;
}
}
catch (ConversionException e) {
throw new ScanNotFoundException(e.getMessage(), e);
}
}