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)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|