
javax.xml.rpc.ServiceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jboss-jaxrpc-api_1.1_spec Show documentation
Show all versions of jboss-jaxrpc-api_1.1_spec Show documentation
JSR-101: Java(TM) API for XML-based RPC (JAX-RPC) 1.1
package javax.xml.rpc;
/**
* @author [email protected]
*/
public class ServiceException extends Exception
{
private static final long serialVersionUID = -6582148924441189775L;
public ServiceException()
{
}
public ServiceException(String message)
{
super(message);
}
public ServiceException(String message, Throwable cause)
{
super(message, cause);
}
public ServiceException(Throwable cause)
{
super(cause);
}
public Throwable getLinkedCause()
{
return super.getCause();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy