author | phh |
Sat, 30 Nov 2019 14:33:05 -0800 | |
changeset 59330 | 5b96c12f909d |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
23010
6dadb192ad81
8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents:
21278
diff
changeset
|
2 |
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
/* |
|
26 |
* $Id: MarshalException.java,v 1.5 2005/05/10 15:47:42 mullan Exp $ |
|
27 |
*/ |
|
28 |
package javax.xml.crypto; |
|
29 |
||
30 |
import java.io.PrintStream; |
|
31 |
import java.io.PrintWriter; |
|
32 |
import javax.xml.crypto.dsig.Manifest; |
|
33 |
import javax.xml.crypto.dsig.XMLSignature; |
|
34 |
import javax.xml.crypto.dsig.XMLSignatureFactory; |
|
35 |
import javax.xml.crypto.dsig.keyinfo.KeyInfo; |
|
36 |
import javax.xml.crypto.dsig.keyinfo.KeyInfoFactory; |
|
37 |
||
38 |
/** |
|
21278 | 39 |
* Indicates an exceptional condition that occurred during the XML |
2 | 40 |
* marshalling or unmarshalling process. |
41 |
* |
|
32275
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
42 |
* <p>A {@code MarshalException} can contain a cause: another |
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
43 |
* throwable that caused this {@code MarshalException} to get thrown. |
2 | 44 |
* |
45 |
* @author Sean Mullan |
|
46 |
* @author JSR 105 Expert Group |
|
47 |
* @since 1.6 |
|
48 |
* @see XMLSignature#sign(XMLSignContext) |
|
49 |
* @see XMLSignatureFactory#unmarshalXMLSignature(XMLValidateContext) |
|
50 |
*/ |
|
51 |
public class MarshalException extends Exception { |
|
52 |
||
53 |
private static final long serialVersionUID = -863185580332643547L; |
|
54 |
||
55 |
/** |
|
56 |
* The throwable that caused this exception to get thrown, or null if this |
|
57 |
* exception was not caused by another throwable or if the causative |
|
58 |
* throwable is unknown. |
|
59 |
* |
|
60 |
* @serial |
|
61 |
*/ |
|
62 |
private Throwable cause; |
|
63 |
||
64 |
/** |
|
32275
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
65 |
* Constructs a new {@code MarshalException} with |
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
66 |
* {@code null} as its detail message. |
2 | 67 |
*/ |
68 |
public MarshalException() { |
|
69 |
super(); |
|
70 |
} |
|
71 |
||
72 |
/** |
|
32275
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
73 |
* Constructs a new {@code MarshalException} with the specified |
2 | 74 |
* detail message. |
75 |
* |
|
76 |
* @param message the detail message |
|
77 |
*/ |
|
78 |
public MarshalException(String message) { |
|
79 |
super(message); |
|
80 |
} |
|
81 |
||
82 |
/** |
|
32275
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
83 |
* Constructs a new {@code MarshalException} with the |
2 | 84 |
* specified detail message and cause. |
85 |
* <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
|
86 |
* {@code cause} is <i>not</i> automatically incorporated in |
2 | 87 |
* this exception's detail message. |
88 |
* |
|
89 |
* @param message the detail message |
|
32275
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
90 |
* @param cause the cause (A {@code null} value is permitted, and |
2 | 91 |
* indicates that the cause is nonexistent or unknown.) |
92 |
*/ |
|
93 |
public MarshalException(String message, Throwable cause) { |
|
94 |
super(message); |
|
95 |
this.cause = cause; |
|
96 |
} |
|
97 |
||
98 |
/** |
|
32275
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
99 |
* Constructs a new {@code MarshalException} with the specified cause |
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
100 |
* and a detail message of {@code (cause==null ? null : cause.toString())} |
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
101 |
* (which typically contains the class and detail message of {@code cause}). |
2 | 102 |
* |
32275
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
103 |
* @param cause the cause (A {@code null} value is permitted, and |
2 | 104 |
* indicates that the cause is nonexistent or unknown.) |
105 |
*/ |
|
106 |
public MarshalException(Throwable cause) { |
|
107 |
super(cause==null ? null : cause.toString()); |
|
108 |
this.cause = cause; |
|
109 |
} |
|
110 |
||
111 |
/** |
|
32275
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
112 |
* Returns the cause of this {@code MarshalException} or |
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
113 |
* {@code null} if the cause is nonexistent or unknown. (The |
2 | 114 |
* 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
|
115 |
* {@code MarshalException} to get thrown.) |
2 | 116 |
* |
32275
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
117 |
* @return the cause of this {@code MarshalException} or |
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
118 |
* {@code null} if the cause is nonexistent or unknown. |
2 | 119 |
*/ |
120 |
public Throwable getCause() { |
|
121 |
return cause; |
|
122 |
} |
|
123 |
||
124 |
/** |
|
32275
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
125 |
* Prints this {@code MarshalException}, its backtrace and |
2 | 126 |
* the cause's backtrace to the standard error stream. |
127 |
*/ |
|
128 |
public void printStackTrace() { |
|
129 |
super.printStackTrace(); |
|
130 |
//XXX print backtrace of cause |
|
131 |
} |
|
132 |
||
133 |
/** |
|
32275
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
134 |
* Prints this {@code MarshalException}, its backtrace and |
2 | 135 |
* the cause's backtrace to the specified print stream. |
136 |
* |
|
32275
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
137 |
* @param s {@code PrintStream} to use for output |
2 | 138 |
*/ |
139 |
public void printStackTrace(PrintStream s) { |
|
140 |
super.printStackTrace(s); |
|
141 |
//XXX print backtrace of cause |
|
142 |
} |
|
143 |
||
144 |
/** |
|
32275
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
145 |
* Prints this {@code MarshalException}, its backtrace and |
2 | 146 |
* the cause's backtrace to the specified print writer. |
147 |
* |
|
32275
17eeb583a331
8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents:
25859
diff
changeset
|
148 |
* @param s {@code PrintWriter} to use for output |
2 | 149 |
*/ |
150 |
public void printStackTrace(PrintWriter s) { |
|
151 |
super.printStackTrace(s); |
|
152 |
//XXX print backtrace of cause |
|
153 |
} |
|
154 |
} |