19 lines
401 B
C#
19 lines
401 B
C#
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;
|
|
}
|
|
|
|
}
|