<PackageReference Include="BouncyCastle.Cryptography" Version="2.7.0-beta.98" />

MemoableResetException

using System; using System.Runtime.Serialization; namespace Org.BouncyCastle.Utilities { [Serializable] public class MemoableResetException : InvalidCastException { public MemoableResetException() { } public MemoableResetException(string message) : base(message) { } public MemoableResetException(string message, Exception innerException) : base(message, innerException) { } protected MemoableResetException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }