using System; using System.Runtime.Serialization; using Impostor.Api; namespace Impostor.Server.Plugins { public class PluginLoaderException : ImpostorException { public PluginLoaderException() { } protected PluginLoaderException(SerializationInfo info, StreamingContext context) : base(info, context) { } public PluginLoaderException(string? message) : base(message) { } public PluginLoaderException(string? message, Exception? innerException) : base(message, innerException) { } } }