forked from j62/ctbrec
1
0
Fork 0

Add URL to HttpException

This commit is contained in:
0xb00bface 2020-07-18 12:48:12 +02:00
parent c50519be82
commit b1d5d959d4
1 changed files with 15 additions and 2 deletions

View File

@ -4,15 +4,24 @@ import java.io.IOException;
public class HttpException extends IOException {
private int code;
private String msg;
private final String url;
private final int code;
private final String msg;
public HttpException(int code, String msg) {
super(code + " - " + msg);
this.url = "";
this.code = code;
this.msg = msg;
}
public HttpException(String url, int code, String msg) {
super(code + " - " + msg + " - " + url);
this.code = code;
this.msg = msg;
this.url = url;
}
public int getResponseCode() {
return code;
}
@ -20,4 +29,8 @@ public class HttpException extends IOException {
public String getResponseMessage() {
return msg;
}
public String getUrl() {
return url;
}
}