mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 20:26:00 +08:00
453e63c651
* 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
13 lines
367 B
C#
13 lines
367 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace BililiveRecorder.Core.Api
|
|
{
|
|
internal class Http412Exception : Exception
|
|
{
|
|
public Http412Exception() { }
|
|
public Http412Exception(string message) : base(message) { }
|
|
public Http412Exception(string message, Exception innerException) : base(message, innerException) { }
|
|
}
|
|
}
|