InvokeEventControllerClassis to be put in the Discord Controllers that use the Discord Ids and the ExecuteController should be put in their own separated classes.
15 lines
411 B
C#
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.")
|
|
{
|
|
}
|
|
}
|
|
}
|