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

de.yourinspiration.jexpresso.baseauth.UserNotFoundException Maven / Gradle / Ivy

package de.yourinspiration.jexpresso.baseauth;

/**
 * Should be thrown if a user could not be found be the given username.
 *
 * @author Marcel Härle
 */
public class UserNotFoundException extends Exception {

    private static final long serialVersionUID = -7119183728405557748L;

    /**
     * Constructs a new exception with the given message.
     *
     * @param message the detail message
     */
    public UserNotFoundException(final String message) {
        super(message);
    }

    /**
     * Constructs a new exception with the given message and cause.
     *
     * @param message the detail message
     * @param cause   the cause
     */
    public UserNotFoundException(final String message, final Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy