Initial Commit
This commit is contained in:
25
iTechSharp/srcbc/ocsp/OCSPException.cs
Normal file
25
iTechSharp/srcbc/ocsp/OCSPException.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Ocsp
|
||||
{
|
||||
public class OcspException
|
||||
: Exception
|
||||
{
|
||||
public OcspException()
|
||||
{
|
||||
}
|
||||
|
||||
public OcspException(
|
||||
string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public OcspException(
|
||||
string message,
|
||||
Exception e)
|
||||
: base(message, e)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user