Signal-Android/libsignal/service/src/main/java/org/whispersystems/signalservice/api/push/exceptions/ContactManifestMismatchExce...

15 lines
368 B
Java

package org.whispersystems.signalservice.api.push.exceptions;
public class ContactManifestMismatchException extends NonSuccessfulResponseCodeException {
private final byte[] responseBody;
public ContactManifestMismatchException(byte[] responseBody) {
this.responseBody = responseBody;
}
public byte[] getResponseBody() {
return responseBody;
}
}