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

com.qiniu.api.auth.AuthException Maven / Gradle / Ivy

There is a newer version: 6.1.9
Show newest version
package com.qiniu.api.auth;

/**
 * The class AuthException wrapps an Authenticate exception when using API,
 * typically resulting from authenticate-related issues.
 * 
 */
public class AuthException extends Exception {

	private static final long serialVersionUID = 1L;

	protected AuthException() {
		super();
	}

	public AuthException(String detailMessage) {
		super(detailMessage);
	}

	public AuthException(String detailMessage, Throwable throwable) {
		super(detailMessage, throwable);
	}

	public AuthException(Throwable throwable) {
		super(throwable);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy