979899100101102103104105106
return xmlRpcClient; } private XmlRpcClient retrieveClient() throws ConnectionFailedException { if (!configurationSet) { throw new ConnectionFailedException("Could not connect to Trac server on startup. Verify your settings."); } assert client != null; return client; }
261262263264265266267
} return result; } private void handleException(XmlRpcException e) throws ConnectionFailedException { throw new ConnectionFailedException(e); }