Signal-Android/libtextsecure/src/org/whispersystems/textsecure/push/exceptions/NonSuccessfulResponseCodeEx...

15 lines
298 B
Java

package org.whispersystems.textsecure.push.exceptions;
import java.io.IOException;
public class NonSuccessfulResponseCodeException extends IOException {
public NonSuccessfulResponseCodeException() {
super();
}
public NonSuccessfulResponseCodeException(String s) {
super(s);
}
}