BililiveRecorder/BililiveRecorder.Core/NoMatchingQnValueException.cs
Genteure 453e63c651
feat: upgrade target framework for cli to .NET 8.0 (#624)
* feat: upgrade target framework to .NET 8.0

* refactor: fix obsolete warnings

* chore: update AutoMapper package to version 13.0.1

* chore: suppress warnings

* feat: upgrade Docker images to .NET 8.0
2024-11-22 14:52:28 +00:00

13 lines
403 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) { }
}
}