AuthException.java 566 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
package com.lyms.cm.qiniu;

/**
* 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);
}
}