mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
13 lines
398 B
C#
13 lines
398 B
C#
|
using Wabbajack.Common.StatusFeed;
|
|||
|
|
|||
|
namespace Wabbajack.Lib
|
|||
|
{
|
|||
|
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";
|
|||
|
}
|
|||
|
}
|