Files
SuperVPN/output/Libraries/BouncyCastle.Crypto/Org/BouncyCastle/Bcpg/OpenPgp/PgpException.cs
2025-10-09 09:57:24 +09:00

25 lines
405 B
C#

using System;
namespace Org.BouncyCastle.Bcpg.OpenPgp;
[Serializable]
public class PgpException : Exception
{
[Obsolete("Use InnerException property")]
public Exception UnderlyingException => base.InnerException;
public PgpException()
{
}
public PgpException(string message)
: base(message)
{
}
public PgpException(string message, Exception exception)
: base(message, exception)
{
}
}