src/share/jaxws_classes/javax/xml/bind/JAXBException.java

changeset 408
b0610cd08440
parent 397
b99d7e355d4b
child 637
9c07ef4934dd
equal deleted inserted replaced
405:cc682329886b 408:b0610cd08440
46 46
47 /** 47 /**
48 * Exception reference 48 * Exception reference
49 * 49 *
50 */ 50 */
51 private Throwable linkedException; 51 private volatile Throwable linkedException;
52 52
53 static final long serialVersionUID = -5621384651494307979L; 53 static final long serialVersionUID = -5621384651494307979L;
54 54
55 /** 55 /**
56 * Construct a JAXBException with the specified detail message. The 56 * Construct a JAXBException with the specified detail message. The
131 * 131 *
132 * @param exception the linked Exception (A null value is permitted and 132 * @param exception the linked Exception (A null value is permitted and
133 * indicates that the linked exception does not exist or 133 * indicates that the linked exception does not exist or
134 * is unknown). 134 * is unknown).
135 */ 135 */
136 public synchronized void setLinkedException( Throwable exception ) { 136 public void setLinkedException( Throwable exception ) {
137 this.linkedException = exception; 137 this.linkedException = exception;
138 } 138 }
139 139
140 /** 140 /**
141 * Returns a short description of this JAXBException. 141 * Returns a short description of this JAXBException.

mercurial