in src/main/java/org/apache/sling/graphql/core/scalars/SlingCoercingWrapper.java [48:54]
public Object parseValue(Object input) {
try {
return converter.parseValue(input);
} catch(ScalarConversionException sce) {
throw new CoercingSerializeException(sce);
}
}