summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Api/Exceptions/ImpostorConfigException.cs
blob: 1e59a9baf141f975f4f40e2bedcc4fb78df663e1 (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
using System;
using System.Runtime.Serialization;

namespace Impostor.Api
{
    public class ImpostorConfigException : ImpostorException
    {
        public ImpostorConfigException()
        {
        }

        protected ImpostorConfigException(SerializationInfo info, StreamingContext context) : base(info, context)
        {
        }

        public ImpostorConfigException(string? message) : base(message)
        {
        }

        public ImpostorConfigException(string? message, Exception? innerException) : base(message, innerException)
        {
        }
    }
}