Files
WCS/Cowain.Base/Models/Plugin/PluginMethodNotFoundException.cs

19 lines
474 B
C#
Raw Normal View History


namespace Cowain.Base.Models.Plugin;
/// <summary>
/// 插件方法未找到异常
/// </summary>
public class PluginMethodNotFoundException : ApplicationException
{
public PluginMethodNotFoundException() : base("插件方法不存在")
{
}
public PluginMethodNotFoundException(string message)
: base(message) { }
public PluginMethodNotFoundException(string message, Exception innerException)
: base(message, innerException) { }
}