BililiveRecorder/BililiveRecorder.Core/NoMatchingQnValueException.cs

13 lines
403 B
C#
Raw 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) { }
2021-11-20 14:34:35 +08:00
}
}