1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-16 08:34:50 +02:00

[xdata] Add message to IllegalArgumentException

This commit is contained in:
Florian Schmaus 2020-07-06 11:24:52 +02:00
parent 3e8666cd91
commit b7fe56fb9b

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);
}
}