getServer() for Ice doesn't throw, it returns a null proxy.

git-svn-id: https://mumble.svn.sourceforge.net/svnroot/mumble/trunk@1565 05730e5d-ab1b-0410-a4ac-84af385074fa
This commit is contained in:
Thorvald Natvig 2009-02-20 23:52:06 +00:00
parent 4fd1812e9d
commit 58b6aa8ca1

View File

@ -650,9 +650,9 @@ module Murmur
["amd"] interface Meta {
/** Fetch interface to specific server.
* @param id Server ID. See [Server::getId].
* @return Interface for specified server.
* @return Interface for specified server, or a null proxy if id is invalid.
*/
idempotent Server *getServer(int id) throws InvalidServerException;
idempotent Server *getServer(int id);
/** Create a new server. Call [Server::getId] on the returned interface to find it's ID.
* @return Interface for new server.