public EncapsulatedExceptions(UntrustedIdentityException e)
        {
            this.untrustedIdentityExceptions = new List <UntrustedIdentityException>();
            this.unregisteredUserExceptions  = new List <UnregisteredUserException>();
            this.networkExceptions           = new List <NetworkFailureException>();

            this.untrustedIdentityExceptions.Add(e);
        }
Beispiel #2
0
 public ProtocolUntrustedIdentityException(UntrustedIdentityException inner, string sender, int senderDevice) : base(inner, sender, senderDevice)
 {
 }