Constructors Summary |
---|
public JAXRPCException()Constructs a new exception with null as its
detail message. The cause is not initialized.
super();
|
public JAXRPCException(String message)Constructs a new exception with the specified detail
message. The cause is not initialized.
super(message);
|
public JAXRPCException(String message, Throwable cause)Constructs a new exception with the specified detail
message and cause.
super(message);
this.cause = cause;
|
public JAXRPCException(Throwable cause)Constructs a new JAXRPCException with the specified cause
and a detail message of cause.toString() (if cause
is non-null) which typically contains the
class and detail message of cause.
super(cause==null ? null : cause.toString());
this.cause = cause;
|