// Make sure it's not there
assertFalse(client.containerExists(containerName));
boolean exceptionThrown = false;
try {
client.deleteContainer(containerName);
fail("Exception not thrown");
}
catch (FilesNotFoundException fnfe) {
exceptionThrown = true;
}