
net.anthavio.httl.api.HttlApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hatatitla Show documentation
Show all versions of hatatitla Show documentation
Compact but tweakable REST client library you have been dreaming of
The newest version!
package net.anthavio.httl.api;
import java.lang.reflect.Method;
import net.anthavio.httl.HttlException;
/**
* API build exception actually
*
* @author martin.vanek
*
*/
public class HttlApiException extends HttlException {
private static final long serialVersionUID = 1L;
protected HttlApiException(String message, Method method) {
super(message + " " + method);
}
public HttlApiException(String message, Class> clazz) {
super(message + " " + clazz);
}
public HttlApiException(String string, Exception x) {
super(string);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy