mirror of
https://github.com/AlexMacocian/MTSC.git
synced 2026-07-24 12:06:38 +00:00
23 lines
508 B
C#
23 lines
508 B
C#
using System;
|
|
|
|
namespace MTSC.Exceptions
|
|
{
|
|
/// <summary>
|
|
/// Exception for invalid response status code.
|
|
/// </summary>
|
|
public sealed class InvalidStatusCodeException : Exception
|
|
{
|
|
public InvalidStatusCodeException()
|
|
{
|
|
}
|
|
|
|
public InvalidStatusCodeException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public InvalidStatusCodeException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|