mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-20 17:57:29 +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);
|
|
}
|
|
}
|