1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-13 15:15:18 +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: case list_single:
return FormField.listSingleBuilder(fieldName); return FormField.listSingleBuilder(fieldName);
default: default:
throw new IllegalArgumentException(); throw new IllegalArgumentException("Unsupported type: " + type);
} }
} }