19 lines
474 B
C#
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) { }
|
|
|
|
}
|