Files
WCS/Cowain.Base/Models/Plugin/PluginMethodNotFoundException.cs
2026-03-02 09:08:20 +08:00

19 lines
474 B
C#

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) { }
}