Updated plugin installation

This commit is contained in:
2024-07-06 18:42:45 +03:00
parent 48a133d58c
commit 2052eb634a
6 changed files with 66 additions and 10 deletions

View File

@@ -0,0 +1,18 @@
using System;
namespace DiscordBotCore.Others.Exceptions;
public class DependencyNotFoundException : Exception
{
private string PluginName { get; set; }
public DependencyNotFoundException(string message): base(message)
{
}
public DependencyNotFoundException(string message, string pluginName): base(message)
{
this.PluginName = pluginName;
}
}