9 lines
385 B
C#
9 lines
385 B
C#
namespace DiscordBotCore.PluginManagement.Loading.Exceptions;
|
|
|
|
public class PluginNotFoundException : Exception
|
|
{
|
|
public PluginNotFoundException(string pluginName) : base($"Plugin {pluginName} was not found") { }
|
|
|
|
public PluginNotFoundException(string pluginName, string url, string branch) :
|
|
base ($"Plugin {pluginName} was not found on {url} (branch: {branch}") { }
|
|
} |