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

26 lines
720 B
C#
Raw Normal View History

2023-05-30 22:51:22 -07:00
namespace Alkami.Ops.Common.Exceptions
{
public class CertificateExportException : CertificateExceptionBase
{
private readonly string _baseExceptionMessage;
private readonly string _subject;
public string BaseExceptionMessage
{
get { return _baseExceptionMessage; }
}
public string Subject
{
get { return _subject; }
}
public CertificateExportException(string message, string name, string subject, string thumbprint, string baseExceptionMessage)
: base(message, name, thumbprint)
{
_baseExceptionMessage = baseExceptionMessage;
_subject = subject;
}
}
}