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

changeset 286
f50545b5e2f1
child 397
b99d7e355d4b
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/jaxws_classes/javax/xml/bind/JAXBException.java	Tue Mar 06 16:09:35 2012 -0800
     1.3 @@ -0,0 +1,184 @@
     1.4 +/*
     1.5 + * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.  Oracle designates this
    1.11 + * particular file as subject to the "Classpath" exception as provided
    1.12 + * by Oracle in the LICENSE file that accompanied this code.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 + * version 2 for more details (a copy is included in the LICENSE file that
    1.18 + * accompanied this code).
    1.19 + *
    1.20 + * You should have received a copy of the GNU General Public License version
    1.21 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.22 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 + *
    1.24 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 + * or visit www.oracle.com if you need additional information or have any
    1.26 + * questions.
    1.27 + */
    1.28 +
    1.29 +package javax.xml.bind;
    1.30 +
    1.31 +import java.io.PrintWriter;
    1.32 +
    1.33 +/**
    1.34 + * This is the root exception class for all JAXB exceptions.
    1.35 + *
    1.36 + * @author <ul><li>Ryan Shoemaker, Sun Microsystems, Inc.</li></ul>
    1.37 + * @see JAXBContext
    1.38 + * @see Marshaller
    1.39 + * @see Unmarshaller
    1.40 + * @since JAXB1.0
    1.41 + */
    1.42 +public class JAXBException extends Exception {
    1.43 +
    1.44 +    /**
    1.45 +     * Vendor specific error code
    1.46 +     *
    1.47 +     */
    1.48 +    private String errorCode;
    1.49 +
    1.50 +    /**
    1.51 +     * Exception reference
    1.52 +     *
    1.53 +     */
    1.54 +    private Throwable linkedException;
    1.55 +
    1.56 +    static final long serialVersionUID = -5621384651494307979L;
    1.57 +
    1.58 +    /**
    1.59 +     * Construct a JAXBException with the specified detail message.  The
    1.60 +     * errorCode and linkedException will default to null.
    1.61 +     *
    1.62 +     * @param message a description of the exception
    1.63 +     */
    1.64 +    public JAXBException(String message) {
    1.65 +        this( message, null, null );
    1.66 +    }
    1.67 +
    1.68 +    /**
    1.69 +     * Construct a JAXBException with the specified detail message and vendor
    1.70 +     * specific errorCode.  The linkedException will default to null.
    1.71 +     *
    1.72 +     * @param message a description of the exception
    1.73 +     * @param errorCode a string specifying the vendor specific error code
    1.74 +     */
    1.75 +    public JAXBException(String message, String errorCode) {
    1.76 +        this( message, errorCode, null );
    1.77 +    }
    1.78 +
    1.79 +    /**
    1.80 +     * Construct a JAXBException with a linkedException.  The detail message and
    1.81 +     * vendor specific errorCode will default to null.
    1.82 +     *
    1.83 +     * @param exception the linked exception
    1.84 +     */
    1.85 +    public JAXBException(Throwable exception) {
    1.86 +        this( null, null, exception );
    1.87 +    }
    1.88 +
    1.89 +    /**
    1.90 +     * Construct a JAXBException with the specified detail message and
    1.91 +     * linkedException.  The errorCode will default to null.
    1.92 +     *
    1.93 +     * @param message a description of the exception
    1.94 +     * @param exception the linked exception
    1.95 +     */
    1.96 +    public JAXBException(String message, Throwable exception) {
    1.97 +        this( message, null, exception );
    1.98 +    }
    1.99 +
   1.100 +    /**
   1.101 +     * Construct a JAXBException with the specified detail message, vendor
   1.102 +     * specific errorCode, and linkedException.
   1.103 +     *
   1.104 +     * @param message a description of the exception
   1.105 +     * @param errorCode a string specifying the vendor specific error code
   1.106 +     * @param exception the linked exception
   1.107 +     */
   1.108 +    public JAXBException(String message, String errorCode, Throwable exception) {
   1.109 +        super( message );
   1.110 +        this.errorCode = errorCode;
   1.111 +        this.linkedException = exception;
   1.112 +    }
   1.113 +
   1.114 +    /**
   1.115 +     * Get the vendor specific error code
   1.116 +     *
   1.117 +     * @return a string specifying the vendor specific error code
   1.118 +     */
   1.119 +    public String getErrorCode() {
   1.120 +        return this.errorCode;
   1.121 +    }
   1.122 +
   1.123 +    /**
   1.124 +     * Get the linked exception
   1.125 +     *
   1.126 +     * @return the linked Exception, null if none exists
   1.127 +     */
   1.128 +    public Throwable getLinkedException() {
   1.129 +        return linkedException;
   1.130 +    }
   1.131 +
   1.132 +    /**
   1.133 +     * Add a linked Exception.
   1.134 +     *
   1.135 +     * @param exception the linked Exception (A null value is permitted and
   1.136 +     *                  indicates that the linked exception does not exist or
   1.137 +     *                  is unknown).
   1.138 +     */
   1.139 +    public synchronized void setLinkedException( Throwable exception ) {
   1.140 +        this.linkedException = exception;
   1.141 +    }
   1.142 +
   1.143 +    /**
   1.144 +     * Returns a short description of this JAXBException.
   1.145 +     *
   1.146 +     */
   1.147 +    public String toString() {
   1.148 +        return linkedException == null ?
   1.149 +            super.toString() :
   1.150 +            super.toString() + "\n - with linked exception:\n[" +
   1.151 +                                linkedException.toString()+ "]";
   1.152 +    }
   1.153 +
   1.154 +    /**
   1.155 +     * Prints this JAXBException and its stack trace (including the stack trace
   1.156 +     * of the linkedException if it is non-null) to the PrintStream.
   1.157 +     *
   1.158 +     * @param s PrintStream to use for output
   1.159 +     */
   1.160 +    public void printStackTrace( java.io.PrintStream s ) {
   1.161 +        super.printStackTrace(s);
   1.162 +    }
   1.163 +
   1.164 +    /**
   1.165 +     * Prints this JAXBException and its stack trace (including the stack trace
   1.166 +     * of the linkedException if it is non-null) to <tt>System.err</tt>.
   1.167 +     *
   1.168 +     */
   1.169 +    public void printStackTrace() {
   1.170 +        super.printStackTrace();
   1.171 +    }
   1.172 +
   1.173 +    /**
   1.174 +     * Prints this JAXBException and its stack trace (including the stack trace
   1.175 +     * of the linkedException if it is non-null) to the PrintWriter.
   1.176 +     *
   1.177 +     * @param s PrintWriter to use for output
   1.178 +     */
   1.179 +    public void printStackTrace(PrintWriter s) {
   1.180 +        super.printStackTrace(s);
   1.181 +    }
   1.182 +
   1.183 +    @Override
   1.184 +    public Throwable getCause() {
   1.185 +        return linkedException;
   1.186 +    }
   1.187 +}

mercurial