All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.xml.rpc.JAXRPCException Maven / Gradle / Ivy

There is a newer version: 2.0.0.Final
Show newest version
package javax.xml.rpc;

/**
 * @author [email protected]
 */
public class JAXRPCException extends RuntimeException
{
   private static final long serialVersionUID = 5213579554532711730L;

   public JAXRPCException()
   {
   }

   public JAXRPCException(String message)
   {
      super(message);
   }

   public JAXRPCException(String message, Throwable cause)
   {
      super(message, cause);
   }

   public JAXRPCException(Throwable cause)
   {
      super(cause);
   }

   public Throwable getLinkedCause()
   {
      return super.getCause();
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy