NamingException
Multithreaded access to an instance is only safe when client code locks the object first.
261262263264265266267
} public void close() throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
267268269270271272273
} public String getNameInNamespace() throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
273274275276277278279
} public void destroySubcontext( String name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
279280281282283284285
} public void unbind( String name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
285286287288289290291
} public Hashtable<String,Object> getEnvironment() throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
291292293294295296297
} public void destroySubcontext( Name name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
297298299300301302303
} public void unbind( Name name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
303304305306307308309
} public Object lookup( String name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
309310311312313314315
} public Object lookupLink( String name ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }
315316317318319320321
} public Object removeFromEnvironment( String propName ) throws NamingException { throw new ServiceUnavailableException( EXCEPTION_MSG ); }