mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 20:39:48 +00:00
9 lines
355 B
C#
9 lines
355 B
C#
|
using Lua;
|
||
|
|
||
|
namespace AIStudio.Tools.PluginSystem;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Represents a plugin that could not be loaded.
|
||
|
/// </summary>
|
||
|
/// <param name="parsingError">The error message that occurred while parsing the plugin.</param>
|
||
|
public sealed class NoPlugin(string parsingError) : PluginBase(string.Empty, LuaState.Create(), PluginType.NONE, parsingError);
|