TestandtargetHttpClientResponseException.java
521 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.analytics.testandtarget.impl;
import com.day.cq.analytics.testandtarget.TestandtargetException;
public class TestandtargetHttpClientResponseException
extends TestandtargetException {
private int responseCode;
public TestandtargetHttpClientResponseException(int responseCode, String errorMessage) {
super(errorMessage);
this.responseCode = responseCode;
}
public int getResponseCode() {
return this.responseCode;
}
}