2021-02-23 18:03:37 +08:00
|
|
|
using System;
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
2021-03-01 21:38:13 +08:00
|
|
|
namespace BililiveRecorder.Core.Api
|
2021-02-23 18:03:37 +08:00
|
|
|
{
|
|
|
|
public class BilibiliApiResponseCodeNotZeroException : Exception
|
|
|
|
{
|
|
|
|
public BilibiliApiResponseCodeNotZeroException() { }
|
|
|
|
public BilibiliApiResponseCodeNotZeroException(string message) : base(message) { }
|
|
|
|
public BilibiliApiResponseCodeNotZeroException(string message, Exception innerException) : base(message, innerException) { }
|
|
|
|
protected BilibiliApiResponseCodeNotZeroException(SerializationInfo info, StreamingContext context) : base(info, context) { }
|
|
|
|
}
|
|
|
|
}
|