diff options
Diffstat (limited to 'Impostor-dev/src/Impostor.Api/Exceptions')
4 files changed, 96 insertions, 0 deletions
diff --git a/Impostor-dev/src/Impostor.Api/Exceptions/ImpostorCheatException.cs b/Impostor-dev/src/Impostor.Api/Exceptions/ImpostorCheatException.cs new file mode 100644 index 0000000..8eb72f8 --- /dev/null +++ b/Impostor-dev/src/Impostor.Api/Exceptions/ImpostorCheatException.cs @@ -0,0 +1,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) + { + } + } +}
\ No newline at end of file diff --git a/Impostor-dev/src/Impostor.Api/Exceptions/ImpostorConfigException.cs b/Impostor-dev/src/Impostor.Api/Exceptions/ImpostorConfigException.cs new file mode 100644 index 0000000..1e59a9b --- /dev/null +++ b/Impostor-dev/src/Impostor.Api/Exceptions/ImpostorConfigException.cs @@ -0,0 +1,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) + { + } + } +} diff --git a/Impostor-dev/src/Impostor.Api/Exceptions/ImpostorException.cs b/Impostor-dev/src/Impostor.Api/Exceptions/ImpostorException.cs new file mode 100644 index 0000000..188c50e --- /dev/null +++ b/Impostor-dev/src/Impostor.Api/Exceptions/ImpostorException.cs @@ -0,0 +1,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) + { + } + } +}
\ No newline at end of file diff --git a/Impostor-dev/src/Impostor.Api/Exceptions/ImpostorProtocolException.cs b/Impostor-dev/src/Impostor.Api/Exceptions/ImpostorProtocolException.cs new file mode 100644 index 0000000..864602d --- /dev/null +++ b/Impostor-dev/src/Impostor.Api/Exceptions/ImpostorProtocolException.cs @@ -0,0 +1,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) + { + } + } +} |