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