mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
5ba347cf46
polly 弹幕xml 托盘图标
14 lines
476 B
C#
14 lines
476 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace BililiveRecorder.Core.Api
|
|
{
|
|
public class Http412Exception : Exception
|
|
{
|
|
public Http412Exception() { }
|
|
public Http412Exception(string message) : base(message) { }
|
|
public Http412Exception(string message, Exception innerException) : base(message, innerException) { }
|
|
protected Http412Exception(SerializationInfo info, StreamingContext context) : base(info, context) { }
|
|
}
|
|
}
|