我正在关注an online example以从基本属性文件中读取信息。当我开始实现代码时,我不断在类的顶部收到以下错误。
The type org.apache.commons.lang.exception.NestableException cannot be resolved. It is indirectly referenced from required .class files
我试图通过从this page下载apache commons lang包并将其包含在我的项目属性中来解决该错误,但这并没有解决问题。
有人可以告诉我为什么会抛出这个错误,以及如何解决它。
答案 0 :(得分:5)
NestableException
类在commons-lang v2.6中可用,但它未包含在最新版本中(请参阅Javadocs for v3.1)。
commons-configuration v1.9的Maven dependencies表明它依赖于commons-lang 2.6。
所以我怀疑你错误地下载了最新版本的commons-lang?