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

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

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

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