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.
super(message);
|
public WebServiceException(String message, Throwable cause)Constructs a new exception with the specified detail
message and cause.
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).
super(cause);
|