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

org.mockserver.authentication.AuthenticationException Maven / Gradle / Ivy

package org.mockserver.authentication;

public class AuthenticationException extends RuntimeException {

    public AuthenticationException(String message) {
        super(message);
    }

    public AuthenticationException(String message, Throwable throwable) {
        super(message, throwable);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy