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

16 lines
356 B
C#

using System;
using DiscordBotCore.Interfaces.Modules;
namespace DiscordBotCore.Others.Exceptions;
public class ModuleNotFound : Exception
{
public ModuleNotFound(string moduleName) : base($"Module not found: {moduleName}")
{
}
public ModuleNotFound(ModuleType moduleType) : base($"No module with type {moduleType} found")
{
}
}