Effective Java (Second Edition), Item 4, discusses using private constructors to enforce noninstantiability. Here's the code sample from the book:

public final class UtilityClass {
    private UtilityClass() {
        throw new AssertionError();
    }
}

However, AssertionError doesn't seem like the right thing to throw. Nothing is being "asserted", which is how the API defines the use of AssertionError.

Is there a different Throwable that's typically in this situation? Does one usually just throw a general Exception with a message? Or is it common to write a custom Exception for this?

It's pretty trivial, but more than anything I guess I'm just curious about it from a style and standards perspective.

link|improve this question

77% accept rate
feedback

6 Answers

up vote 10 down vote accepted

There is an assertion: "I'm asserting that this constructor will never be called". So, indeed, AssertionError is correct here.

link|improve this answer
Thanks. I guess I've just been looking at AssertionError the wrong way. – Rob Hruska Dec 29 '08 at 23:04
Strongly disagree here, see below. You need to be able to find your way to the place where the exception started; you also should make the exception give you, or a naive reader of the code, a good hint what happened. An AssertionError not associated with an assertion does neither. – Charlie Martin Dec 29 '08 at 23:56
@Charlie: surely the stack trace is indication enough? Plus an Exception will get caught by catch (Exception e), an error (rightly) won't. – cletus Dec 30 '08 at 0:54
I agree with cletus's comments here, the stacktrace is invaluable, and exception chaining is the best feature since sliced bread, because it allows you to preserve the stack trace far and wide. :-) – Chris Jester-Young Dec 30 '08 at 2:05
Incorrect, see the javadoc: java.sun.com/j2se/1.4.2/docs/api/java/lang/AssertionError.html – Charlie Martin Dec 30 '08 at 18:07
show 2 more comments
feedback

I like including Bloch's comment:

// Suppress default constructor for noninstantiability

Or better yet putting it in the Error:

private UtilityClass()
{
    throw new AssertionError("Suppress default constructor for noninstantiability");
}
link|improve this answer
feedback

UnsupportedOperationException sounds like the best fit, though a checked exception would be even better, since it might warn someone erroneously instantiating the class at compile time.

link|improve this answer
Hehe, declare it "throws Throwable", and throw an AssertionError anyway. :-) – Chris Jester-Young Dec 29 '08 at 23:47
feedback

A broken assertion means that you've broken a contract specification of your code. So it's the right thing here.

However, as I assume you'll be privately instantiating an instance, it will also call the constructor and cause an error- unless you have another constructor?

link|improve this answer
My understanding is that this utility class provides a number of static methods only, so the constructor will not be called. – Matthew Murdoch Dec 29 '08 at 22:54
Matthew is correct. Technically nothing even needs to be thrown since the constructor's private. Throwing something insures that the class itself doesn't call the constructor. – Rob Hruska Dec 29 '08 at 22:57
feedback

What about IllegalAcessError ? :)

link|improve this answer
I'm not sure if I like that one, since it's a subclass of IncompatibleClassChangeError. But it sounds nice. :) – Rob Hruska Dec 29 '08 at 22:55
feedback

No no no, with all due respect to Josh Bloch, never throw an AssertionError unless it's from an assertion. If you want an AssertionError here, throw it with assert(false). Then someone reading the code can find it later.

Even better, define your own exception, say CantInstantiateUtilityClass. then you'll have code that says

try {
    // some stuff
} catch (CantInstantiateUtilityClass e) {
    // react
}

so that the reader of the catcher knows what happened.

Update

Every so often some damn fool wanders by here and downvotes this again, almost four years after the fact. So, let me just note that the standard still defines AssertionError as the result of a failed assertion, not as what some beginner thinks ought to be thrown in place of a well-defined informative exception. Sadly, good exception discipline is perhaps the least encouraged skill in Java programming.

link|improve this answer
3  
Strongly disagree. (Bloch, not Block, by the way.) The problem with "assert false" is that if you have assertions turned off, the assertion will fail to be thrown. People should find assertions by looking for AssertionError as well as assert. – Chris Jester-Young Dec 29 '08 at 23:35
I also strongly disagree with CantInstantiateUtilityClass as an exception type: first, it doesn't contain the word Exception or Error at the end, and second, AssertionError allows you to give an error message, and that should be used in terms of hinting people as to what happened. – Chris Jester-Young Dec 29 '08 at 23:36
Dammit, I've known Josh for ten years, you'd think I could spell his name. Okay, so tag Exception on if you like; but it shouldn't be an assertion error unless it's caused by an assertion. Someone new reading the code won't have a clue, and your example doesn't offer one. – Charlie Martin Dec 29 '08 at 23:54
3  
-1 An exception will get caught by some (possibly random) catch (Exception e) block. An Error won't be. Creating a custom exception for something that can only happen by modifying the source code or having a custom ClassLoader is terrible advice. – cletus Dec 30 '08 at 0:55
-1 Why should your code have to catch CantInstantiateUtilityClass? This is something that should never happen. Which is exactly when assertions are appropriate. Others have pointed out the problem with the assert keyword. – Craig P. Motlin Dec 30 '08 at 17:28
show 12 more comments
feedback

Your Answer

 
or
required, but never shown

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