mirror of
https://github.com/AlexMacocian/MTSC.git
synced 2026-07-24 12:06:38 +00:00
20 lines
435 B
C#
20 lines
435 B
C#
using System;
|
|
|
|
namespace MTSC.Exceptions
|
|
{
|
|
public sealed class IncompleteRequestBodyException : Exception
|
|
{
|
|
public IncompleteRequestBodyException()
|
|
{
|
|
}
|
|
|
|
public IncompleteRequestBodyException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public IncompleteRequestBodyException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|