Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
class Bouncy<T> extends Throwable {     
}
// Error: the generic class Bouncy<T> may not subclass java.lang.Throwable

Why doesn't Java support generic Throwables?

I realize that type erasure complicates certain things, but obviously Java gets by with a lot already, so why not push it one more notch and allow generic Throwables, with comprehensive compile-time check for potential problems?


I feel like the type erasure argument is rather weak. Currently, we can't do:

void process(List<String> list) {
}

void process(List<Integer> list) {
}

Of course, we get by without it. I'm not asking that we should be able to do catch Bouncy<T1> and Bouncy<T2> in the same try block, but if we use them in disjoint contexts with strict compile-time enforceable rules (which is pretty much the way generics works right now), wouldn't it be workable?

share|improve this question
@polygenelubricants:"I feel like the type erasure argument is rather weak" --> I feel you're a little late for this argument. It's long over. They have won. – Vladimir Dyuzhev Mar 22 '10 at 14:22
possible duplicate of Why doesn't Java allow generic subclasses of Throwable? – C. Ross Aug 8 '12 at 17:47

5 Answers

up vote 8 down vote accepted

Java Language Specification 8.1.2 Generic Classes and Type Parameters:

This restriction is needed since the catch mechanism of the Java virtual machine works only with non-generic classes.

Personally, I think it's because we can't get any benefits of generics inside a catch clause. We can't write catch (Bouncy<String> ex) due to type erasure, but if we write catch (Bouncy ex), it would be useless to make it generic.

share|improve this answer
2  
Any idea why it happens that way? – zneak Mar 15 '10 at 2:04

Type erasure. Runtime exception type has no generics information. Thus you cannot do

} catch( Mistake<Account> ea) {
  ...
} catch( Mistake<User> eu) {
...
}

all you can do is

catch( Mistake ea ) {
  ...
}

And type erasure is how it was decided to preserve the backward compatibility when Java was moving from 1.4 to 1.5. Many people was unhappy then, and rightfully so. But having in mind the amount of deployed code, it was unthinkable to break code that worked happily in 1.4.

share|improve this answer

Here are a couple of things you can do:

  1. Throwables can implement generic interfaces, as long as the throwable itself has no type parameters, e.g.

    interface Bouncy<E> {
        // ...
    }
    class BouncyString extends Exception implements Bouncy<String> {
        // ...
    }

  2. A throws clause can refer to type parameters, e.g.
    static <X extends Throwable> void
    throwIfInstanceOf(Throwable ex, Class<X> clazz) throws X {
        if (clazz.isInstance(ex)) throw clazz.cast(ex);
    }

share|improve this answer

Short answer: because they took shortcuts, just like they did with erasure.

Long answer: as others already indicated, because of erasure, there is no way to make a difference at runtime between a "catch MyException<String>" and "catch MyException<Integer>".

But that doesn't mean that there is no need for generic exceptions. I want generics to be able to use generic fields! They could have simply allowed generic exceptions, but only allow catching them in the raw state (e.g. "catch MyException").

Granted, this would make generics even more complicated. This is to show just how bad the decision to erase generics was. When will we have a Java version that supports real generics (with RTTI), not the current syntactic sugar?

share|improve this answer

You can still use generic methods, like this:

public class SomeException {
    private final Object target;

    public SomeException(Object target) {
        this.target = target;
    }

    public <T> T getTarget() {
        return (T) target;
    }
}

....

catch (SomeException e) {
    Integer target = e.getTarget();
}

But I do agree with Cristian. While the accepted answer is technically correct, Cristian Vasile's answer is one that qualifies and even challenges the limitation. If the fact that this won't work after type erasure...

catch (Exception<T1> e) {}
catch (Exception<T2> e) {}

...was the driver for disallowing generics in Throwables, the same driver could have been used to disallow generics in Java across the board, on the basis that the below would similarly not work after type erasure.

interface MyInterface {
    Comparable<Integer> getComparable();
    Comparable<String> getComparable();
}

Or the below.

interface MyInterface {
    void setComparable(Comparable<Integer> c);
    void setComparable(Comparable<String> c);
}

Of course, like Cristian points out, generics are still valuable, as they reduce the need to cast in various contexts, and the JLS could have allowed generics in Throwables, while still disallowing catch blocks that erase to the same raw type, just like it disallows method signatures that erase to the same raw type. Consequently, the decision to disallow them in the Throwable context seems arbitrary, unless there's something we're missing here.

I would expand on Cristian's answer. Instead of:

catch (MyException e) { // raw

Java could still have allowed something like:

catch (MyException<X> e) {

as long as X is consistent with the generic type declaration. For example, if the type declaration is

class MyException<X extends Thread>

then this could have been made to work:

catch (MyException<Thread> e) {

but not this:

catch (MyException<Object> e) {
share|improve this answer
Some of my examples may appear confusing. When I give the two examples of method signatures that erase to the same signature, I refer to real examples if invalid situations that compliant compilers must refuse to compile. I merely point out that these situations (erasure to the same generic type) were not used by the language designers as a premise to ban generics across the board, but they seem to have been used to ban generics in throws clauses. Instead, the compiler was made to recognize and report such cases. It could have done the same for catch clauses. The choice seems arbitrary. – Mihai Danila Oct 26 '12 at 14:27

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.