using Lua; namespace AIStudio.Tools.PluginSystem; /// /// Represents a plugin that could not be loaded. /// /// The error message that occurred while parsing the plugin. public sealed class NoPlugin(string parsingError) : PluginBase(string.Empty, LuaState.Create(), PluginType.NONE, parsingError);