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; } } }