Initial project commit

This commit is contained in:
2022-06-11 16:42:18 -04:00
commit 14565a17e2
60 changed files with 3739 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TorControlLibrary.Exceptions
{
public class TorAuthenticationException : TorException
{
public String HashedPassword { get; set; }
public String ServerResponse { get; set; }
}
}