BililiveRecorder/BililiveRecorder.Core/NoMatchingQnValueException.cs
2021-11-20 14:34:35 +08:00

25 lines
589 B
C#

using System;
using System.Runtime.Serialization;
namespace BililiveRecorder.Core
{
public class NoMatchingQnValueException : Exception
{
public NoMatchingQnValueException()
{
}
public NoMatchingQnValueException(string message) : base(message)
{
}
public NoMatchingQnValueException(string message, Exception innerException) : base(message, innerException)
{
}
protected NoMatchingQnValueException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}