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

AlreadyBoundException

public class AlreadyBoundException extends Exception
An AlreadyBoundException is thrown if an attempt is made to bind an object in the registry to a name that already has an associated binding.
version
1.12, 12/19/03
since
JDK1.1
author
Ann Wollrath
author
Roger Riggs
see
java.rmi.Naming#bind(String, java.rmi.Remote)
see
java.rmi.registry.Registry#bind(String, java.rmi.Remote)

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

since
JDK1.1


                   
      
	super();
    
public AlreadyBoundException(String s)
Constructs an AlreadyBoundException with the specified detail message.

param
s the detail message
since
JDK1.1

	super(s);
    
Methods Summary