blob: 0e232ee40fe61f8481adaa2c0b5de007c6b3d6ab (
plain)
1
2
3
4
5
6
7
|
package eu.siacs.conversations.xmpp;
import eu.siacs.conversations.entities.Account;
public interface OnTLSExceptionReceived {
public void onTLSExceptionReceived(String fingerprint, Account account);
}
|