<PackageReference Include="BouncyCastle.Cryptography" Version="2.5.0" />

LmsException

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