Files
jellyfin-plugin-danmu/Jellyfin.Plugin.Danmu/Core/FrequentlyRequestException.cs
2022-11-09 21:47:10 +08:00

10 lines
174 B
C#

using System;
public class FrequentlyRequestException : Exception
{
public FrequentlyRequestException(Exception ex) : base("Request tool frequently", ex)
{
}
}