I am catching an Exception and trying to examine the getCause() of it, performing some further actions if the cause is a of type MyException, defined in another library.
I am getting this Eclipse (compiler?) error when trying to check if e.getCause() instanceof MyException:
Incompatible conditional operand types Throwable and MyException
When attempting to cast (MyException) e.getCause(), I get:
Cannot cast from Throwable to MyException
I can compiled e.getCause().getClass().equals(MyException.class), and this does return true.
Exception e = null; if(e instanceof InvocationTargetException)it reports this error, the answer to this question is that: import the class you use. – hiway Apr 11 at 11:07