be.vlaanderen.informatievlaanderen.ldes.ldio.exceptions.UnsuccesfulPollingException Maven / Gradle / Ivy
The newest version!
package be.vlaanderen.informatievlaanderen.ldes.ldio.exceptions;
public class UnsuccesfulPollingException extends RuntimeException {
final int httpStatusCode;
final String endpoint;
public UnsuccesfulPollingException(int httpStatusCode, String endpoint) {
this.httpStatusCode = httpStatusCode;
this.endpoint = endpoint;
}
@Override
public String getMessage() {
return "Error while polling endpoint: " + endpoint + " Response has status code: " + httpStatusCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy