2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2019-08-29 10:52:21 -07:00
|
|
|
* Copyright (c) 1998, 2019, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
* 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
|
2010-05-25 15:58:33 -07:00
|
|
|
* published by the Free Software Foundation. Oracle designates this
|
2007-12-01 00:00:00 +00:00
|
|
|
* particular file as subject to the "Classpath" exception as provided
|
2010-05-25 15:58:33 -07:00
|
|
|
* by Oracle in the LICENSE file that accompanied this code.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
2010-05-25 15:58:33 -07:00
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package java.security;
|
|
|
|
|
2018-09-17 15:22:46 -07:00
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.ObjectInputStream;
|
|
|
|
import java.io.ObjectOutputStream;
|
|
|
|
import java.io.ObjectStreamField;
|
2018-11-06 10:01:16 -08:00
|
|
|
import jdk.internal.access.SharedSecrets;
|
2018-09-17 15:22:46 -07:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
/**
|
|
|
|
* This exception is thrown by
|
2013-06-28 10:48:02 -07:00
|
|
|
* {@code doPrivileged(PrivilegedExceptionAction)} and
|
|
|
|
* {@code doPrivileged(PrivilegedExceptionAction,
|
|
|
|
* AccessControlContext context)} to indicate
|
2007-12-01 00:00:00 +00:00
|
|
|
* that the action being performed threw a checked exception. The exception
|
|
|
|
* thrown by the action can be obtained by calling the
|
2013-06-28 10:48:02 -07:00
|
|
|
* {@code getException} method. In effect, an
|
|
|
|
* {@code PrivilegedActionException} is a "wrapper"
|
2007-12-01 00:00:00 +00:00
|
|
|
* for an exception thrown by a privileged action.
|
|
|
|
*
|
|
|
|
* <p>As of release 1.4, this exception has been retrofitted to conform to
|
|
|
|
* the general purpose exception-chaining mechanism. The "exception thrown
|
|
|
|
* by the privileged computation" that is provided at construction time and
|
|
|
|
* accessed via the {@link #getException()} method is now known as the
|
|
|
|
* <i>cause</i>, and may be accessed via the {@link Throwable#getCause()}
|
|
|
|
* method, as well as the aforementioned "legacy method."
|
|
|
|
*
|
2017-05-31 19:54:16 -07:00
|
|
|
* @since 1.2
|
2007-12-01 00:00:00 +00:00
|
|
|
* @see PrivilegedExceptionAction
|
|
|
|
* @see AccessController#doPrivileged(PrivilegedExceptionAction)
|
|
|
|
* @see AccessController#doPrivileged(PrivilegedExceptionAction,AccessControlContext)
|
|
|
|
*/
|
|
|
|
public class PrivilegedActionException extends Exception {
|
|
|
|
// use serialVersionUID from JDK 1.2.2 for interoperability
|
2019-08-29 10:52:21 -07:00
|
|
|
@java.io.Serial
|
2007-12-01 00:00:00 +00:00
|
|
|
private static final long serialVersionUID = 4724086851538908602L;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs a new PrivilegedActionException "wrapping"
|
|
|
|
* the specific Exception.
|
|
|
|
*
|
|
|
|
* @param exception The exception thrown
|
|
|
|
*/
|
|
|
|
public PrivilegedActionException(Exception exception) {
|
2018-09-17 15:22:46 -07:00
|
|
|
super(null, exception); // Disallow initCause
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the exception thrown by the privileged computation that
|
2013-06-28 10:48:02 -07:00
|
|
|
* resulted in this {@code PrivilegedActionException}.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
* <p>This method predates the general-purpose exception chaining facility.
|
|
|
|
* The {@link Throwable#getCause()} method is now the preferred means of
|
|
|
|
* obtaining this information.
|
|
|
|
*
|
|
|
|
* @return the exception thrown by the privileged computation that
|
2013-06-28 10:48:02 -07:00
|
|
|
* resulted in this {@code PrivilegedActionException}.
|
2007-12-01 00:00:00 +00:00
|
|
|
* @see PrivilegedExceptionAction
|
|
|
|
* @see AccessController#doPrivileged(PrivilegedExceptionAction)
|
|
|
|
* @see AccessController#doPrivileged(PrivilegedExceptionAction,
|
|
|
|
* AccessControlContext)
|
|
|
|
*/
|
|
|
|
public Exception getException() {
|
2018-09-17 15:22:46 -07:00
|
|
|
return (Exception)super.getCause();
|
|
|
|
}
|
|
|
|
|
|
|
|
public String toString() {
|
|
|
|
String s = getClass().getName();
|
|
|
|
Throwable cause = super.getCause();
|
|
|
|
return (cause != null) ? (s + ": " + cause.toString()) : s;
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 15:22:46 -07:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
/**
|
2018-09-17 15:22:46 -07:00
|
|
|
* Serializable fields for UndeclaredThrowableException.
|
|
|
|
*
|
|
|
|
* @serialField undeclaredThrowable Throwable
|
|
|
|
*/
|
2019-08-29 10:52:21 -07:00
|
|
|
@java.io.Serial
|
2018-09-17 15:22:46 -07:00
|
|
|
private static final ObjectStreamField[] serialPersistentFields = {
|
|
|
|
new ObjectStreamField("exception", Exception.class)
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Reconstitutes the PrivilegedActionException instance from a stream
|
|
|
|
* and initialize the cause properly when deserializing from an older
|
|
|
|
* version.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
2018-09-17 15:22:46 -07:00
|
|
|
* The getException and getCause method returns the private "exception"
|
|
|
|
* field in the older implementation and PrivilegedActionException::cause
|
|
|
|
* was set to null.
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
2019-08-29 10:52:21 -07:00
|
|
|
@java.io.Serial
|
2018-09-17 15:22:46 -07:00
|
|
|
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException {
|
|
|
|
ObjectInputStream.GetField fields = s.readFields();
|
|
|
|
Exception exception = (Exception) fields.get("exception", null);
|
|
|
|
if (exception != null) {
|
|
|
|
SharedSecrets.getJavaLangAccess().setCause(this, exception);
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 15:22:46 -07:00
|
|
|
/*
|
|
|
|
* To maintain compatibility with older implementation, write a serial
|
|
|
|
* "exception" field with the cause as the value.
|
|
|
|
*/
|
2019-08-29 10:52:21 -07:00
|
|
|
@java.io.Serial
|
2018-09-17 15:22:46 -07:00
|
|
|
private void writeObject(ObjectOutputStream out) throws IOException {
|
|
|
|
ObjectOutputStream.PutField fields = out.putFields();
|
|
|
|
fields.put("exception", super.getCause());
|
|
|
|
out.writeFields();
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
}
|