1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-10 17:55:39 +02:00

Bug 317061: fixed exception throwing

This commit is contained in:
Alena Laskavaia 2010-06-17 00:34:47 +00:00
parent d570162453
commit 8ab2acc24a

View file

@ -128,7 +128,7 @@ public class BasicProblemPreference extends AbstractProblemPreference {
String val = tokenizer.sval;
importValue(val);
} catch (IOException e) {
new IllegalArgumentException(e);
throw new IllegalArgumentException(e);
}
}
}