
net.anthavio.httl.HttlRequestException 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;
/**
*
* @author martin.vanek
*
* When HttlRequest cannot be built or send - missing/broken request marshaller for example
*
*/
public class HttlRequestException extends HttlException {
private static final long serialVersionUID = 1L;
public HttlRequestException(Exception x) {
super(x);
}
public HttlRequestException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy