public EncapsulatedExceptions(UntrustedIdentityException e)
        {
            this.UntrustedIdentityExceptions = new List<UntrustedIdentityException>();
            this.UnregisteredUserExceptions = new List<UnregisteredUserException>();
            this.NetworkExceptions = new List<NetworkFailureException>();

            this.UntrustedIdentityExceptions.Add(e);
        }
 public UntrustedIdentityException(UntrustedIdentityException e)
     : this(e.Message, e.E164Number, e.IdentityKey)
 {
 }
 public UntrustedIdentityException(UntrustedIdentityException e)
     : this(e.Message, e.getE164Number(), e.getIdentityKey())
 {
 }