Skip to content

Commit a2c5f9b

Browse files
committed
[java] Fixing exception message, no functional changes
1 parent a4a9535 commit a2c5f9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/client/src/org/openqa/selenium/json/UuidCoercer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public BiFunction<JsonInput, PropertySetting, UUID> apply(Type type) {
4343
break;
4444

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

4949
return UUID.fromString(toCoerce);

0 commit comments

Comments
 (0)