summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Api/Exceptions/ImpostorProtocolException.cs
blob: 864602d040b0bd90032f5a0f2f0d0a685f160b2e (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 ImpostorProtocolException : ImpostorException
    {
        public ImpostorProtocolException()
        {
        }

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

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

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