Initial Commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Security.Certificates
|
||||
{
|
||||
public class CertificateEncodingException : CertificateException
|
||||
{
|
||||
public CertificateEncodingException() : base() { }
|
||||
public CertificateEncodingException(string msg) : base(msg) { }
|
||||
public CertificateEncodingException(string msg, Exception e) : base(msg, e) { }
|
||||
}
|
||||
}
|
11
iTechSharp/srcbc/security/cert/CertificateException.cs
Normal file
11
iTechSharp/srcbc/security/cert/CertificateException.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Security.Certificates
|
||||
{
|
||||
public class CertificateException : GeneralSecurityException
|
||||
{
|
||||
public CertificateException() : base() { }
|
||||
public CertificateException(string message) : base(message) { }
|
||||
public CertificateException(string message, Exception exception) : base(message, exception) { }
|
||||
}
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Security.Certificates
|
||||
{
|
||||
public class CertificateExpiredException : CertificateException
|
||||
{
|
||||
public CertificateExpiredException() : base() { }
|
||||
public CertificateExpiredException(string message) : base(message) { }
|
||||
public CertificateExpiredException(string message, Exception exception) : base(message, exception) { }
|
||||
}
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Security.Certificates
|
||||
{
|
||||
public class CertificateNotYetValidException : CertificateException
|
||||
{
|
||||
public CertificateNotYetValidException() : base() { }
|
||||
public CertificateNotYetValidException(string message) : base(message) { }
|
||||
public CertificateNotYetValidException(string message, Exception exception) : base(message, exception) { }
|
||||
}
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Security.Certificates
|
||||
{
|
||||
public class CertificateParsingException : CertificateException
|
||||
{
|
||||
public CertificateParsingException() : base() { }
|
||||
public CertificateParsingException(string message) : base(message) { }
|
||||
public CertificateParsingException(string message, Exception exception) : base(message, exception) { }
|
||||
}
|
||||
}
|
11
iTechSharp/srcbc/security/cert/CrlException.cs
Normal file
11
iTechSharp/srcbc/security/cert/CrlException.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Security.Certificates
|
||||
{
|
||||
public class CrlException : GeneralSecurityException
|
||||
{
|
||||
public CrlException() : base() { }
|
||||
public CrlException(string msg) : base(msg) {}
|
||||
public CrlException(string msg, Exception e) : base(msg, e) {}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user