[xdata] Add message to IllegalArgumentException

This commit is contained in:
Florian Schmaus 2020-07-06 11:24:52 +02:00
parent 3e8666cd91
commit b7fe56fb9b
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ public class FillableForm extends FilledForm {
case list_single:
return FormField.listSingleBuilder(fieldName);
default:
throw new IllegalArgumentException();
throw new IllegalArgumentException("Unsupported type: " + type);
}
}