Skip to content

Commit

Permalink
hide file paths in error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
mnlerman committed Dec 20, 2023
1 parent c2c644e commit ffe46f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tds/src/main/java/thredds/core/DatasetManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ public FeatureDatasetPoint openPointDataset(HttpServletRequest req, HttpServletR
if (featureDatasetPoint != null) {
return featureDatasetPoint;
} else {
throw new UnsupportedOperationException("Could not open as a PointDataset: " + errlog);
throw new UnsupportedOperationException("Could not open as a point dataset");
}
} catch (Throwable t) {
if (ncd == null)
Expand Down

0 comments on commit ffe46f2

Please sign in to comment.