mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-26 14:09:58 +00:00
8 lines
213 B
Java
8 lines
213 B
Java
package org.thoughtcrime.securesms.transport;
|
|
|
|
public class UserInterventionRequiredException extends Exception {
|
|
public UserInterventionRequiredException(String detailMessage) {
|
|
super(detailMessage);
|
|
}
|
|
}
|