uk.co.autotrader.traverson.exception.HttpException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of traverson4j-core Show documentation
Show all versions of traverson4j-core Show documentation
The kernel of traverson4j. This provides the main API for a client to traverse a Hypermedia REST service
The newest version!
package uk.co.autotrader.traverson.exception;
/**
* Thrown when an issue has occurred performing a http call
* You may consider retrying this request
*/
public class HttpException extends RuntimeException {
/**
* Constructs a HttpException with the message and cause
* @param message detailed message of the error
* @param cause the original exception for this HttpException
*/
public HttpException(String message, Throwable cause) {
super(message, cause);
}
}