Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a static setter that is used to set all instances of MyClass:

public class MyClass {  
        ....
    protected static final Setter setter = new Setter();
        ...
}

However this does not compile since the setter constructor throws an exception:

public class Setter {

    public Setter() throws FileNotFoundException {
             ....
    }
}

How can I work around this?

share|improve this question
Generally if something throws a checked exception, it's not something you want store in a static. – Tom Hawtin - tackline Jul 14 '10 at 14:40

2 Answers

up vote 9 down vote accepted

The ExceptionInInitializerError is designed for exactly this purpose. Here's a cite of relevance from the linked Javadoc:

Signals that an unexpected exception has occurred in a static initializer. An ExceptionInInitializerError is thrown to indicate that an exception occurred during evaluation of a static initializer or the initializer for a static variable.

Wrap the assignment in a static initializer block and handle accordingly.

public class MyClass {  
    protected static final Setter setter;

    static {
        try { 
            setter = new Setter();
        } catch (FileNotFoundException e) {
            throw new ExceptionInInitializerError(e);
        }
    }
}
share|improve this answer

You can create it within a static function, as long as you catch the Exception it (potentially) raises.

public class MyClass {
    protected static final Setter setter = createSetter();

    protected static Setter createSetter() {
        try {
            return new Setter();
        } catch(FileNotFoundException e) {
            // handle it appropriately
            return null;
        }
    }
}

There is no way to allow the exception to propagate, since it raises a checked exception (and that's illegal during initialization). There's a couple ways to deal with that:

  • Raise an unchecked exception: This causes a java.lang.ExceptionInInitializerError to get raised when it tries to load the class. It can be confusing, and hard to trace and debug. I don't recommend it.

  • Change it to a non-final variable, and create a function to access it: If the variable's non-final, you can check if it's set in the get, and raise the checked exception if it's not. This allows (indeed, requires) your code to handle the exception at the point where it's called:


public class MyClass {
    private static Setter setter;

    protected static synchronized Setter getSetter() raises FileNotFoundException {
        if setter == null {
            setter = new Setter();
        }

        return setter;
    }
}
share|improve this answer
what if it is a fatal error and it should propagate? – sixtyfootersdude Jul 14 '10 at 14:30
@sixtyfootersdude: wrap it in an unchecked excpetion. – Michael Borgwardt Jul 14 '10 at 14:50

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.