mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
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) { }
|
||
|
}
|
||
|
}
|