lastException = ex;
}
}
TimeoutException toex = new TimeoutException("Cannot create container in time");
if (lastException != null) {
toex.initCause(lastException);
}
throw toex;
}
private void waitForSuccessfulDeploymentOf(String containerName, BundleContext syscontext, long timeout) throws TimeoutException {