mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-28 20:45:17 +00:00
0b20e99cd2
// FREEBIE
10 lines
195 B
Java
10 lines
195 B
Java
package org.thoughtcrime.redphone.signaling;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class UnauthorizedException extends IOException {
|
|
public UnauthorizedException(String s) {
|
|
super(s);
|
|
}
|
|
}
|