*/
public final void dropDB(final String name) throws StandardCodedException {
try {
final Mongo mongo = this.getMongo();
if (null != mongo) {
mongo.dropDatabase(name);
}
} catch (UnknownHostException t) {
throw this.getError503(t.getMessage());
} catch (Throwable t) {
throw this.getError500(t.getMessage());