Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NestableException cannot be resolved when using apache.commons.configuration

Im using the following:

import java.util.Collections;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;

import org.apache.commons.configuration.XMLConfiguration;

and i get:

The type org.apache.commons.lang.exception.NestableException cannot be resolved. It is indirectly referenced from required .class files

Im using eclipse...

how can i resolve this? he offers me to Configure build path but i dont really know how to solve this collision from there.....

like image 244
Noam Shaish Avatar asked Oct 25 '11 15:10

Noam Shaish


1 Answers

Problem solved... had to download the commons-lang-2.4.jar and include in project.

couldnt be more simple than that....

like image 131
Noam Shaish Avatar answered Nov 20 '22 08:11

Noam Shaish