决定使用 Apache 的 Common Configuration 包来解析一个 XML 文件。
我决定做一个:
XMLConfiguration xmlConfig = new XMLConfiguration(file);
Eclipse 抱怨我没有捕捉到异常(Unhandled exception type ConfigurationException
),所以我点击了可信赖的surround with try/catch
,它添加了以下代码:
try
{
XMLConfiguration xmlConfig = new XMLConfiguration(file);
}
catch (ConfigurationException ex)
{
ex.printStackTrace();
}
但是现在它抱怨:
No exception of type ConfigurationException can be thrown; an exception type
must be a subclass of Throwable
我不明白为什么当 Eclipse 是建议添加它的那个时它给了我这个错误。