Searched refs:AccessException (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/java/rmi/
H A DAccessException.java29 * An <code>AccessException</code> is thrown by certain methods of the
35 * host, then an <code>AccessException</code> is thrown.
43 public class AccessException extends java.rmi.RemoteException { class in inherits:java.rmi.RemoteException
49 * Constructs an <code>AccessException</code> with the specified
55 public AccessException(String s) { method in class:AccessException
60 * Constructs an <code>AccessException</code> with the specified
67 public AccessException(String s, Exception ex) { method in class:AccessException
/openjdk7/jdk/src/share/classes/java/rmi/registry/
H A DRegistry.java27 import java.rmi.AccessException;
62 * implementation may throw {@link java.rmi.AccessException}, which
95 * containing an <code>AccessException</code>, then the registry
98 * @throws AccessException if this registry is local and it denies
104 throws RemoteException, NotBoundException, AccessException;
117 * containing an <code>AccessException</code>, then the registry
121 * @throws AccessException if this registry is local and it denies
128 throws RemoteException, AlreadyBoundException, AccessException;
140 * containing an <code>AccessException</code>, then the registry
144 * @throws AccessException i
[all...]
/openjdk7/jdk/src/share/classes/sun/management/jmxremote/
H A DSingleEntryRegistry.java35 import java.rmi.AccessException;
75 public void bind(String name, Remote obj) throws AccessException {
76 throw new AccessException("Cannot modify this registry");
79 public void rebind(String name, Remote obj) throws AccessException {
80 throw new AccessException("Cannot modify this registry");
83 public void unbind(String name) throws AccessException {
84 throw new AccessException("Cannot modify this registry");
/openjdk7/jdk/test/java/rmi/activation/Activatable/lookupActivationSystem/
H A DLookupActivationSystem.java80 if (e.getCause() instanceof AccessException) {
95 if (e.getCause() instanceof AccessException) {
109 if (e.getCause() instanceof AccessException) {
/openjdk7/jdk/src/share/classes/sun/rmi/registry/
H A DRegistryImpl.java147 throws RemoteException, AlreadyBoundException, AccessException
164 throws RemoteException, NotBoundException, AccessException
180 throws RemoteException, AccessException
208 public static void checkAccess(String op) throws AccessException {
234 throw new AccessException(
257 throw new AccessException(
267 throw new AccessException("Registry." + op +
/openjdk7/jdk/test/java/rmi/registry/interfaceHash/
H A DReferenceRegistryStub.java50 throws java.rmi.AccessException, java.rmi.AlreadyBoundException, java.rmi.RemoteException
76 throws java.rmi.AccessException, java.rmi.RemoteException
104 throws java.rmi.AccessException, java.rmi.NotBoundException, java.rmi.RemoteException
140 throws java.rmi.AccessException, java.rmi.RemoteException
164 throws java.rmi.AccessException, java.rmi.NotBoundException, java.rmi.RemoteException
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivation.java49 import java.rmi.AccessException;
342 throws RemoteException, AlreadyBoundException, AccessException
345 throw new AccessException(
353 throws RemoteException, NotBoundException, AccessException
356 throw new AccessException(
365 throws RemoteException, AccessException
368 throw new AccessException(
590 public void shutdown() throws AccessException {
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/javax/rmi/CORBA/
H A DUtil.java59 import java.rmi.AccessException;
225 return new AccessException(message, ex);
/openjdk7/jdk/src/share/classes/com/sun/jndi/rmi/registry/
H A DRegistryContext.java355 } else if (re instanceof AccessException) {

Completed in 93 milliseconds