mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
14 lines
524 B
C#
14 lines
524 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace BililiveRecorder.Core
|
|
{
|
|
internal 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) { }
|
|
}
|
|
}
|