blob: 188c50e85dad95190b4104edb29e9b0ee8949acf (
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 ImpostorException : Exception
{
public ImpostorException()
{
}
protected ImpostorException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
public ImpostorException(string? message) : base(message)
{
}
public ImpostorException(string? message, Exception? innerException) : base(message, innerException)
{
}
}
}
|