ps/Modules/Alkami.Ops.Common/Exceptions/PrivateKeyNotFoundException.cs

26 lines
692 B
C#
Raw Permalink Normal View History

2023-05-30 22:51:22 -07:00
namespace Alkami.Ops.Common.Exceptions
{
public class PrivateKeyNotFoundException : CertificateExceptionBase
{
private readonly string _storeName;
private readonly string _storeLocation;
public string StoreName
{
get { return _storeName; }
}
public string StoreLocation
{
get { return _storeLocation; }
}
public PrivateKeyNotFoundException(string message, string name, string thumbprint, string storeName, string storeLocation)
: base(message, name, thumbprint)
{
_storeName = storeName;
_storeLocation = storeLocation;
}
}
}