There are 1 code examples for javax.naming.NameAlreadyBoundException.
The API names are highlighted below.
You can use
button
to vote the code example(s) you like. The best code example will be ranked first next time. Thanks a lot for your feedback.
Project Name: jnode-core Package: org.jnode.vm
Source Code: BootLogImpl.java (Click to view .java file)
Method Code:
static void initialize(){
Unsafe.debug("Initialize BootLog\n");
try {
BootLogInstance.set(new BootLogImpl());
}
catch ( NameAlreadyBoundException e) {
Unsafe.debug(e.toString());
Unsafe.debug("\n");
}
catch ( NamingException e) {
Unsafe.debug(e.toString());
Unsafe.debug("\n");
}
}