FileDocCategorySizeDatePackage
WebServiceException.javaAPI DocJava SE 6 API1880Tue Jun 10 00:27:16 BST 2008javax.xml.ws

WebServiceException

public class WebServiceException extends RuntimeException
The WebServiceException class is the base exception class for all JAX-WS API runtime exceptions.
since
JAX-WS 2.0

Fields Summary
Constructors Summary
public WebServiceException()
Constructs a new exception with null as its detail message. The cause is not initialized.

 
    super();
  
public WebServiceException(String message)
Constructs a new exception with the specified detail message. The cause is not initialized.

param
message The detail message which is later retrieved using the getMessage method

    super(message);
  
public WebServiceException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.

param
message The detail message which is later retrieved using the getMessage method
param
cause The cause which is saved for the later retrieval throw by the getCause method

    super(message,cause);
  
public WebServiceException(Throwable cause)
Constructs a new WebServiceException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).

param
cause The cause which is saved for the later retrieval throw by the getCause method. (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

    super(cause);
  
Methods Summary