1 package org
.asamk
.signal
.manager
.api
;
3 public class UntrustedIdentityException
extends Exception
{
5 private final RecipientAddress sender
;
6 private final int senderDevice
;
8 public UntrustedIdentityException(final RecipientAddress sender
, final int senderDevice
) {
9 super("Untrusted identity: " + sender
.getIdentifier());
11 this.senderDevice
= senderDevice
;
14 public RecipientAddress
getSender() {
18 public int getSenderDevice() {