Search code examples
javaexceptionthrowable

How can I fix 'No exception of type SomeException can be thrown; an exception type must be a subclass of Throwable'


I have java webstart app and want to use app API for testing purposes. So I get required (as I assumed) library from webserver and install it to maven repository. And all is fine except custom exception which received

No exception of type SomeException can be thrown; an exception type must be a subclass of Throwable

As I understand from similar topics - some jar library is missing, is there some way to know which one? or maybe there is other way to fix this? (of course I can install all jars which used for app, but there are over 90 jar's).


Solution

  • I used JadClipse Eclipse plug-in for decompiling my jar and found that my SomeException extends FaultInfoException (org.codehaus.xfire.fault.FaultInfoException),and then added xfire-all dependency to my pom.xml