Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My code is the following:

package org.minuteware.jgun;

import org.apache.commons.configuration.*;

class ConfigReader {
    public void getconfig() {
        Configuration config;
        try {
            config = new PropertiesConfiguration("gun.conf");
        } catch (ConfigurationException e) {
            e.printStackTrace();
        }
        String day = config.getString("sync_overlays");
        System.out.println(day);
    }
}

Eclipse has two problems with this code:

  1. For the package org.minuteware.jgun; line it says The type org.apache.commons.lang.exception.NestableException cannot be resolved. It is indirectly referenced from required .class files
  2. For the line } catch (ConfigurationException e) { it says No exception of type ConfigurationException can be thrown; an exception type must be a subclass of Throwable

I've found ConfigurationException in Java?, but the solution provided there does not help.

share|improve this question

1 Answer

up vote 18 down vote accepted

The core of Apache Commons Configuration has the following runtime dependencies:

Put them in your classpath as well. Your particular problem is caused by a missing Lang dependency.

share|improve this answer
5  
The problem was that I had Lang3, but the legacy Lang2 was needed. Quite strange that it does not support version 3. – Andriy Yurchuk Oct 4 '11 at 17:58
Fair point, I'll edit the answer to include the version numbers as mentioned in the dependencies page. – BalusC Oct 4 '11 at 18:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.