Skip to content

Commit

Permalink
chore: fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksandra-bel committed Mar 5, 2024
1 parent 267d984 commit 04a228d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public Service(Map<String, Object> json) {
Objects.requireNonNull(this.getServiceEndpoint(), "serviceEndpoint is null");
} catch (Exception e) {
throw new IllegalArgumentException(
String.format("Invalid VerificationMethod: %s", SerializeUtil.toJson(json)), e);
String.format("Invalid Service: %s", SerializeUtil.toJson(json)), e);
}
}

Expand Down

0 comments on commit 04a228d

Please sign in to comment.