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) {