FileDocCategorySizeDatePackage
NotBoundException.javaAPI DocJava SE 5 API1263Fri Aug 26 14:57:10 BST 2005java.rmi

NotBoundException

public class NotBoundException extends Exception
A NotBoundException is thrown if an attempt is made to lookup or unbind in the registry a name that has no associated binding.
version
1.12, 12/19/03
since
JDK1.1
author
Ann Wollrath
author
Roger Riggs
see
java.rmi.Naming#lookup(String)
see
java.rmi.Naming#unbind(String)
see
java.rmi.registry.Registry#lookup(String)
see
java.rmi.registry.Registry#unbind(String)

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public NotBoundException()
Constructs a NotBoundException with no specified detail message.

since
JDK1.1


                   
      
	super();
    
public NotBoundException(String s)
Constructs a NotBoundException with the specified detail message.

param
s the detail message
since
JDK1.1

	super(s);
    
Methods Summary