You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

26 lines
614 B

namespace com.hitrust.b2b.Security.Certificates
{
using System;
using System.Runtime.Serialization;
[Serializable]
public class CertificateException : Exception
{
public CertificateException()
{
}
public CertificateException(string message) : base(message)
{
}
protected CertificateException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
public CertificateException(string message, Exception inner) : base(message, inner)
{
}
}
}