< prev index next >

src/java.xml.ws/share/classes/javax/xml/ws/WebServiceException.java

Print this page

        

*** 60,76 **** public WebServiceException(String message, Throwable cause) { super(message,cause); } /** Constructs a new WebServiceException with the specified cause ! * and a detail message of <tt>(cause==null ? null : ! * cause.toString())</tt> (which typically contains the ! * class and detail message of <tt>cause</tt>). * * @param cause The cause which is saved for the later * retrieval throw by the getCause method. ! * (A <tt>null</tt> value is permitted, and * indicates that the cause is nonexistent or * unknown.) **/ public WebServiceException(Throwable cause) { super(cause); --- 60,77 ---- public WebServiceException(String message, Throwable cause) { super(message,cause); } /** Constructs a new WebServiceException with the specified cause ! * and a detail message of ! * {@code (cause==null ? null : cause.toString())} ! * (which typically contains the ! * class and detail message of {@code cause}). * * @param cause The cause which is saved for the later * retrieval throw by the getCause method. ! * (A {@code null} value is permitted, and * indicates that the cause is nonexistent or * unknown.) **/ public WebServiceException(Throwable cause) { super(cause);
< prev index next >