All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.washingtonpost.mongo.dropwizard.exceptions.NullDBNameException Maven / Gradle / Ivy

There is a newer version: 4.0.7
Show newest version
package com.washingtonpost.mongo.dropwizard.exceptions;

/**
 * Exception thrown if the {@link com.washingtonpost.mongo.dropwizard.MongoFactory} attempts to build
 * a DB object and the configured database name is null.
 * 
 * Repurposed from https://github.com/eeb/dropwizard-mongo
 */
public class NullDBNameException extends RuntimeException {

    public NullDBNameException() {
        super("Attempt made to create a DB object when the configured database name was null or invalid");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy