17 lines
251 B
C#
17 lines
251 B
C#
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)
|
|
{
|
|
}
|
|
}
|