I\'m trying to write a job scheduling system in GWT that maintains an array of exceptions (Class extends Exception>[] exceptions), that might be resolve
Class extends Exception>[] exceptions
I use following code:
public static boolean isInstanceOf(Class type, Object object) { try { T objectAsType = (T) object; } catch (ClassCastException exception) { return false; } return true; }