NamingException
Multithreaded access to an instance is only safe when client code locks the object first.
321322323324325326327
} public void bind( String name, Object obj ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
327328329330331332333
} public void rebind( String name, Object obj ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
333334335336337338339
} public Object lookup( Name name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
339340341342343344345
} public Object lookupLink( Name name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
345346347348349350351
} public void bind( Name name, Object obj ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
351352353354355356357
} public void rebind( Name name, Object obj ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
357358359360361362363
} public void rename( String oldName, String newName ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
363364365366367368369
} public Context createSubcontext( String name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
369370371372373374375
} public Context createSubcontext( Name name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
375376377378379380381
} public void rename( Name oldName, Name newName ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }