We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eefcb2 commit 549d808Copy full SHA for 549d808
src/main/java/org/apache/commons/io/input/BOMInputStream.java
@@ -238,7 +238,7 @@ public static Builder builder() {
238
private BOMInputStream(final Builder builder) throws IOException {
239
super(builder);
240
if (IOUtils.length(builder.byteOrderMarks) == 0) {
241
- throw new IllegalArgumentException("No BOMs specified");
+ throw new IllegalArgumentException("No ByteOrderMark specified.");
242
}
243
this.include = builder.include;
244
final List<ByteOrderMark> list = Arrays.asList(builder.byteOrderMarks);
0 commit comments