init commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Pkcs;
|
||||
|
||||
public class PkcsException : Exception
|
||||
{
|
||||
public PkcsException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public PkcsException(string message, Exception underlying)
|
||||
: base(message, underlying)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user