A value that fits no built-in conversion fails

All 5 scenarios hold

A number outside the target's range, a malformed date or character, and a type with no available converter all raise a parse-time failure. Each message closes by naming the classes searched for a type converter; those depend on where the test lives, so they are left out of the table.

expected outcome broken scenario
ScenarioInput valueParameter typeError message?
Decimal for a whole-number type0.1java.lang.ByteBuilt-in conversion of value "0.1" to type java.lang.Byte failed. Are you missing a type converter for this conversion?
Whole number outside the range128java.lang.ByteBuilt-in conversion of value "128" to type java.lang.Byte failed. Are you missing a type converter for this conversion?
More than a single characterabcjava.lang.CharacterBuilt-in conversion of value "abc" to type java.lang.Character failed. Are you missing a type converter for this conversion?
Malformed dateinvalidjava.time.LocalDateBuilt-in conversion of value "invalid" to type java.time.LocalDate failed. Are you missing a type converter for this conversion?
Type with no built-in conversion52org.tabletest.junit.javadomain.AgesBuilt-in conversion of value "52" to type org.tabletest.junit.javadomain.Ages failed. Are you missing a type converter for this conversion?