session-android/libtextsecure/src/org/whispersystems/textsecure/push/exceptions/NotFoundException.java

10 lines
281 B
Java

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