mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 19:57:27 +08:00
25 lines
589 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|