BililiveRecorder/BililiveRecorder.Core/NoMatchingQnValueException.cs

14 lines
524 B
C#
Raw Permalink Normal View History

2021-11-20 14:34:35 +08:00
using System;
using System.Runtime.Serialization;
namespace BililiveRecorder.Core
{
internal class NoMatchingQnValueException : Exception
2021-11-20 14:34:35 +08:00
{
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) { }
2021-11-20 14:34:35 +08:00
}
}