DiscordExtensionLib/Discord/Exception/MismatchedEnumLengthsException.cs
Dultus 42bf94c00a Integrated Controller control. The methods InvokeEventControllerClass and ExecuteController should be used by the user.
InvokeEventControllerClassis to be put in the Discord Controllers that use the Discord Ids and the ExecuteController should be put in their own separated classes.
2023-04-06 14:53:28 +02:00

15 lines
411 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Discord.Exception
{
public class MismatchedEnumLengthsException : System.Exception
{
public MismatchedEnumLengthsException() : base("Length of values and enums are different. You are required to pass as many values as there are enums.")
{
}
}
}