init commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Security.Certificates;
|
||||
|
||||
[Serializable]
|
||||
public class CertificateEncodingException : CertificateException
|
||||
{
|
||||
public CertificateEncodingException()
|
||||
{
|
||||
}
|
||||
|
||||
public CertificateEncodingException(string msg)
|
||||
: base(msg)
|
||||
{
|
||||
}
|
||||
|
||||
public CertificateEncodingException(string msg, Exception e)
|
||||
: base(msg, e)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Security.Certificates;
|
||||
|
||||
[Serializable]
|
||||
public class CertificateException : GeneralSecurityException
|
||||
{
|
||||
public CertificateException()
|
||||
{
|
||||
}
|
||||
|
||||
public CertificateException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public CertificateException(string message, Exception exception)
|
||||
: base(message, exception)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Security.Certificates;
|
||||
|
||||
[Serializable]
|
||||
public class CertificateExpiredException : CertificateException
|
||||
{
|
||||
public CertificateExpiredException()
|
||||
{
|
||||
}
|
||||
|
||||
public CertificateExpiredException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public CertificateExpiredException(string message, Exception exception)
|
||||
: base(message, exception)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Security.Certificates;
|
||||
|
||||
[Serializable]
|
||||
public class CertificateNotYetValidException : CertificateException
|
||||
{
|
||||
public CertificateNotYetValidException()
|
||||
{
|
||||
}
|
||||
|
||||
public CertificateNotYetValidException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public CertificateNotYetValidException(string message, Exception exception)
|
||||
: base(message, exception)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Security.Certificates;
|
||||
|
||||
[Serializable]
|
||||
public class CertificateParsingException : CertificateException
|
||||
{
|
||||
public CertificateParsingException()
|
||||
{
|
||||
}
|
||||
|
||||
public CertificateParsingException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public CertificateParsingException(string message, Exception exception)
|
||||
: base(message, exception)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Security.Certificates;
|
||||
|
||||
[Serializable]
|
||||
public class CrlException : GeneralSecurityException
|
||||
{
|
||||
public CrlException()
|
||||
{
|
||||
}
|
||||
|
||||
public CrlException(string msg)
|
||||
: base(msg)
|
||||
{
|
||||
}
|
||||
|
||||
public CrlException(string msg, Exception e)
|
||||
: base(msg, e)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user