mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-29 22:42:22 +00:00
8 lines
165 B
Java
8 lines
165 B
Java
|
|
package org.whispersystems.textsecure.util;
|
||
|
|
|
||
|
|
public class InvalidNumberException extends Throwable {
|
||
|
|
public InvalidNumberException(String s) {
|
||
|
|
super(s);
|
||
|
|
}
|
||
|
|
}
|