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