Hello guys...
I'm trying to make this code generic:
public final Object unwrap(Class arg0) {
throw new UnsupportedOperationException();
}
It comes from the Wrapper class (java.sql) and looks originally like this:
<T> T unwrap(java.lang.Class<T> iface) throws java.sql.SQLException;