Skip to content

Commit dc87afa

Browse files
committed
(addition to #1000 work)
1 parent 16bddc1 commit dc87afa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/com/fasterxml/jackson/databind/deser/std/UUIDDeserializer.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ private void _badFormat(String uuidStr, DeserializationContext ctxt)
7777
throws JsonMappingException
7878
{
7979
throw InvalidFormatException.from(ctxt.getParser(),
80-
"UUID has to be represented by standard 36-char representation",
80+
String.format("UUID has to be represented by standard 36-char representation: input String '%s'",
81+
uuidStr),
8182
uuidStr, handledType());
8283
}
8384

0 commit comments

Comments
 (0)