Skip to content

Commit c03c1d9

Browse files
committed
Remove PII from error message
1 parent 4d54d57 commit c03c1d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solid/src/main/java/com/inrupt/client/solid/SolidClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ public <T extends Resource> CompletionStage<Void> delete(final T resource, final
290290
Response.BodyHandlers.throwOnError(
291291
Response.BodyHandlers.ofByteArray(),
292292
(r) -> isSuccess(r.statusCode()),
293-
httpExceptionMapper("Deleting resource " + resource.getIdentifier() + " failed.")
293+
httpExceptionMapper("Unable to delete resource.")
294294
)
295295
)
296296
.thenAccept(o -> { /* no-op */ });

0 commit comments

Comments
 (0)