wabbajack/Wabbajack.App.Wpf/StatusMessages/NexusAPIQuotaExceeded.cs

13 lines
390 B
C#
Raw Normal View History

2021-12-30 00:15:37 +00:00
using Wabbajack.Interventions;
2021-12-26 21:56:44 +00:00
2021-12-30 00:15:37 +00:00
namespace Wabbajack
2021-12-26 21:56:44 +00:00
{
public class NexusAPIQuotaExceeded : AErrorMessage
{
public override string ShortDescription => $"You have exceeded your Nexus API limit for the day";
public override string ExtendedDescription =>
"You have exceeded your Nexus API limit for the day, please try again after midnight GMT";
}
}