Signal-Android/libtextsecure/src/main/java/org/whispersystems/textsecure/api/push/exceptions/NotFoundException.java

8 lines
195 B
Java

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