mirror of
https://github.com/oxen-io/session-android.git
synced 2025-07-02 04:59:12 +00:00
10 lines
186 B
Java
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);
|
|
}
|
|
}
|