2014-01-06 14:35:54 -08:00

10 lines
186 B
Java

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