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

xyz.morphia.AuthenticationException Maven / Gradle / Ivy

The newest version!
package xyz.morphia;


/**
 * Signifies an error trying to authenticate against the database.
 */
public class AuthenticationException extends RuntimeException {

    /**
     * Creates an instance with the given message
     *
     * @param message the message
     */
    public AuthenticationException(final String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy