init commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Bcpg.OpenPgp;
|
||||
|
||||
[Serializable]
|
||||
public class PgpDataValidationException : PgpException
|
||||
{
|
||||
public PgpDataValidationException()
|
||||
{
|
||||
}
|
||||
|
||||
public PgpDataValidationException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public PgpDataValidationException(string message, Exception exception)
|
||||
: base(message, exception)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user