Hi,i have an WSDL containing exception-definitions. My wsdl2java not only generates the exceptions. It also generates the class Throwable. My Problem is that the generated Exception calls the super-constructor:
public Exception(String message, Throwable cause)
The Throwable, the constructor needs is of cause "java.lang.Throwable", but it uses the generated Throwable because all generated files are in the same package. How can solve this problem?
Thanks in advance, Jakob Günther
