src/java.xml.crypto/share/classes/javax/xml/crypto/URIReferenceException.java
author cjplummer
Sat, 09 Dec 2017 07:50:50 -0800
changeset 48385 589a6f1d86e9
parent 47216 71c04702a3d5
permissions -rw-r--r--
8191229: serviceability/jvmti/GetOwnedMonitorInfo/GetOwnedMonitorInfoTest.java fails with NoClassDefFoundError Summary: call FindClass() when we are in the proper classloader context Reviewed-by: sspitsyn, dholmes, amenkov
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * $Id: URIReferenceException.java,v 1.4 2005/05/10 15:47:42 mullan Exp $
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
package javax.xml.crypto;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.PrintStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.PrintWriter;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import javax.xml.crypto.dsig.keyinfo.RetrievalMethod;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * Indicates an exceptional condition thrown while dereferencing a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * {@link URIReference}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
    38
 * <p>A {@code URIReferenceException} can contain a cause: another
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
    39
 * throwable that caused this {@code URIReferenceException} to get thrown.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * @author Sean Mullan
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * @author JSR 105 Expert Group
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * @see URIDereferencer#dereference(URIReference, XMLCryptoContext)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * @see RetrievalMethod#dereference(XMLCryptoContext)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
public class URIReferenceException extends Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    private static final long serialVersionUID = 7173469703932561419L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     * The throwable that caused this exception to get thrown, or null if this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     * exception was not caused by another throwable or if the causative
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * throwable is unknown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    private Throwable cause;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    private URIReference uriReference;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    /**
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
    63
     * Constructs a new {@code URIReferenceException} with
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
    64
     * {@code null} as its detail message.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    public URIReferenceException() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    /**
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
    71
     * Constructs a new {@code URIReferenceException} with the specified
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * detail message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * @param message the detail message
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    public URIReferenceException(String message) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        super(message);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    /**
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
    81
     * Constructs a new {@code URIReferenceException} with the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * specified detail message and cause.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * <p>Note that the detail message associated with
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
    84
     * {@code cause} is <i>not</i> automatically incorporated in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * this exception's detail message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * @param message the detail message
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
    88
     * @param cause the cause (A {@code null} value is permitted, and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     *        indicates that the cause is nonexistent or unknown.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    public URIReferenceException(String message, Throwable cause) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        super(message);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        this.cause = cause;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /**
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
    97
     * Constructs a new {@code URIReferenceException} with the
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
    98
     * specified detail message, cause and {@code URIReference}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * <p>Note that the detail message associated with
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   100
     * {@code cause} is <i>not</i> automatically incorporated in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * this exception's detail message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * @param message the detail message
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   104
     * @param cause the cause (A {@code null} value is permitted, and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     *        indicates that the cause is nonexistent or unknown.)
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   106
     * @param uriReference the {@code URIReference} that was being
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     *    dereferenced when the error was encountered
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   108
     * @throws NullPointerException if {@code uriReference} is
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   109
     *    {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    public URIReferenceException(String message, Throwable cause,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        URIReference uriReference) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        this(message, cause);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        if (uriReference == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            throw new NullPointerException("uriReference cannot be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        this.uriReference = uriReference;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    /**
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   121
     * Constructs a new {@code URIReferenceException} with the specified
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   122
     * cause and a detail message of {@code (cause==null ? null :
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   123
     * cause.toString())} (which typically contains the class and detail
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   124
     * message of {@code cause}).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     *
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   126
     * @param cause the cause (A {@code null} value is permitted, and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *        indicates that the cause is nonexistent or unknown.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    public URIReferenceException(Throwable cause) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        super(cause==null ? null : cause.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        this.cause = cause;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    /**
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   135
     * Returns the {@code URIReference} that was being dereferenced
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * when the exception was thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   138
     * @return the {@code URIReference} that was being dereferenced
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   139
     * when the exception was thrown, or {@code null} if not specified
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    public URIReference getURIReference() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        return uriReference;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    /**
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   146
     * Returns the cause of this {@code URIReferenceException} or
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   147
     * {@code null} if the cause is nonexistent or unknown.  (The
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * cause is the throwable that caused this
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   149
     * {@code URIReferenceException} to get thrown.)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     *
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   151
     * @return the cause of this {@code URIReferenceException} or
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   152
     *    {@code null} if the cause is nonexistent or unknown.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    public Throwable getCause() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        return cause;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    /**
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   159
     * Prints this {@code URIReferenceException}, its backtrace and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * the cause's backtrace to the standard error stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    public void printStackTrace() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        super.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        //XXX print backtrace of cause
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    /**
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   168
     * Prints this {@code URIReferenceException}, its backtrace and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * the cause's backtrace to the specified print stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     *
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   171
     * @param s {@code PrintStream} to use for output
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    public void printStackTrace(PrintStream s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        super.printStackTrace(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        //XXX print backtrace of cause
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    /**
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   179
     * Prints this {@code URIReferenceException}, its backtrace and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * the cause's backtrace to the specified print writer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     *
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   182
     * @param s {@code PrintWriter} to use for output
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    public void printStackTrace(PrintWriter s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        super.printStackTrace(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        //XXX print backtrace of cause
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
}