17 lines
436 B
C#
17 lines
436 B
C#
namespace Cowain.Base.Models.Plugin;
|
|
/// <summary>
|
|
/// 插件不存在异常
|
|
/// </summary>
|
|
public class PluginNotFoundException : ApplicationException
|
|
{
|
|
public PluginNotFoundException() : base("插件不存在")
|
|
{
|
|
}
|
|
|
|
public PluginNotFoundException(string message)
|
|
: base(message) { }
|
|
|
|
public PluginNotFoundException(string message, Exception innerException)
|
|
: base(message, innerException) { }
|
|
}
|