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

org.tangerine.apiresolver.exception.APIAccessException Maven / Gradle / Ivy

The newest version!
package org.tangerine.apiresolver.exception;
/**
 * API访问异常
 * @author weird
 *
 */
public class APIAccessException extends Exception {
	
	private static final long serialVersionUID = 5803052883689830591L;

	public APIAccessException() {
        super();
    }

    public APIAccessException(String s) {
        super(s);
    }

    public APIAccessException(String message, Throwable cause) {
        super(message, cause);
    }

    public APIAccessException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy