summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Server/Plugins/PluginLoaderException.cs
blob: 64424a14e2b9f51d21f88c099d6dfc3b35d85083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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)
        {
        }
    }
}