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

Print this page
rev 472 : 8036030: Update JAX-WS RI integration to latest version

*** 1,7 **** /* ! * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 46,56 **** /** * Exception reference * */ ! private volatile Throwable linkedException; static final long serialVersionUID = -5621384651494307979L; /** * Construct a JAXBException with the specified detail message. The --- 46,56 ---- /** * Exception reference * */ ! private Throwable linkedException; static final long serialVersionUID = -5621384651494307979L; /** * Construct a JAXBException with the specified detail message. The
*** 131,141 **** * * @param exception the linked Exception (A null value is permitted and * indicates that the linked exception does not exist or * is unknown). */ ! public void setLinkedException( Throwable exception ) { this.linkedException = exception; } /** * Returns a short description of this JAXBException. --- 131,141 ---- * * @param exception the linked Exception (A null value is permitted and * indicates that the linked exception does not exist or * is unknown). */ ! public synchronized void setLinkedException( Throwable exception ) { this.linkedException = exception; } /** * Returns a short description of this JAXBException.