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

org.openstack4j.api.exceptions.AuthenticationException Maven / Gradle / Ivy

package org.openstack4j.api.exceptions;

/**
 * An exception that is thrown when Credentials failed or the default tenant is invalid
 * 
 * @author Jeremy Unruh
 */
public class AuthenticationException extends ResponseException {

	private static final long serialVersionUID = 1L;

	public AuthenticationException(String message, int status, Throwable cause) {
		super(message, status, cause);
	}

	public AuthenticationException(String message, int status) {
		super(message, status);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy