Skip to content

Commit

Permalink
[java] Fixing exception message, no functional changes
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Nov 20, 2020
1 parent a4a9535 commit a2c5f9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/client/src/org/openqa/selenium/json/UuidCoercer.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public BiFunction<JsonInput, PropertySetting, UUID> apply(Type type) {
break;

default:
throw new JsonException("Unable to coerce type to URL: " + jsonInput.peek());
throw new JsonException("Unable to coerce type to UUID: " + jsonInput.peek());
}

return UUID.fromString(toCoerce);
Expand Down

0 comments on commit a2c5f9b

Please sign in to comment.