Fix variable name typo

This commit is contained in:
Michael Osipov 2019-12-15 10:58:06 +01:00
parent 830263d279
commit 8adc6c3277
1 changed files with 4 additions and 4 deletions

View File

@ -38,15 +38,15 @@ public class TunnelRefusedException extends HttpException {
private static final long serialVersionUID = -8646722842745617323L;
private final String responseMesage;
private final String responseMessage;
public TunnelRefusedException(final String message, final String responseMesage) {
public TunnelRefusedException(final String message, final String responseMessage) {
super(message);
this.responseMesage = responseMesage;
this.responseMessage = responseMessage;
}
public String getResponseMessage() {
return this.responseMesage;
return this.responseMessage;
}
}