
net.dongliu.cute.http.exception.IllegalStatusCodeException Maven / Gradle / Ivy
The newest version!
package net.dongliu.cute.http.exception;
/**
* Thrown when status code is not 2xx
*/
public class IllegalStatusCodeException extends RequestsException {
private static final long serialVersionUID = 7652853590053144388L;
public IllegalStatusCodeException(int statusCode) {
super("Illegal http status code: " + statusCode);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy