mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-07 10:04:28 +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);
|
|
}
|
|
}
|