Files
SethDiscordBot/DiscordBotCore/Others/Exceptions/ModuleMethodNotFound.cs
2024-08-10 20:27:59 +03:00

14 lines
366 B
C#

using System;
using DiscordBotCore.Interfaces.Modules;
namespace DiscordBotCore.Others.Exceptions;
public class ModuleMethodNotFound : Exception
{
private IModule _SearchedModule;
public ModuleMethodNotFound(IModule module, string methodName) : base($"Method not found {methodName} in module {module.Name}")
{
_SearchedModule = module;
}
}