mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-28 15:40:56 +01:00
The great stylecop update
Beware those that read into this commit. Here there be style conformance... Closes #1252
This commit is contained in:
@@ -1,16 +1,17 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Net.Http;
|
||||
|
||||
using Tgstation.Server.Api.Models.Response;
|
||||
|
||||
namespace Tgstation.Server.Client
|
||||
{
|
||||
/// <summary>
|
||||
/// Occurs when the API version of the client is not compatible with the server's
|
||||
/// Occurs when the API version of the client is not compatible with the server's.
|
||||
/// </summary>
|
||||
public sealed class VersionMismatchException : ApiException
|
||||
{
|
||||
/// <summary>
|
||||
/// Initialize a new instance of the <see cref="VersionMismatchException"/> <see langword="class"/>.
|
||||
/// Initializes a new instance of the <see cref="VersionMismatchException"/> class.
|
||||
/// </summary>
|
||||
/// <param name="errorMessage">The <see cref="ErrorMessageResponse"/> for the <see cref="ApiException"/>.</param>
|
||||
/// <param name="responseMessage">The <see cref="HttpResponseMessage"/> for the <see cref="ClientException"/>.</param>
|
||||
@@ -19,21 +20,27 @@ namespace Tgstation.Server.Client
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Construct an <see cref="VersionMismatchException"/>
|
||||
/// Initializes a new instance of the <see cref="VersionMismatchException"/> class.
|
||||
/// </summary>
|
||||
public VersionMismatchException() { }
|
||||
public VersionMismatchException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Construct an <see cref="VersionMismatchException"/> with a <paramref name="message"/>
|
||||
/// Initializes a new instance of the <see cref="VersionMismatchException"/> class.
|
||||
/// </summary>
|
||||
/// <param name="message">The message for the <see cref="Exception"/></param>
|
||||
public VersionMismatchException(string message) : base(message) { }
|
||||
/// <param name="message">The message for the <see cref="Exception"/>.</param>
|
||||
public VersionMismatchException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Construct an <see cref="VersionMismatchException"/> with a <paramref name="message"/> and <paramref name="innerException"/>
|
||||
/// Initializes a new instance of the <see cref="VersionMismatchException"/> class.
|
||||
/// </summary>
|
||||
/// <param name="message">The message for the <see cref="Exception"/></param>
|
||||
/// <param name="innerException">The inner <see cref="Exception"/> for the base <see cref="Exception"/></param>
|
||||
public VersionMismatchException(string message, Exception innerException) : base(message, innerException) { }
|
||||
/// <param name="message">The message for the <see cref="Exception"/>.</param>
|
||||
/// <param name="innerException">The inner <see cref="Exception"/> for the base <see cref="Exception"/>.</param>
|
||||
public VersionMismatchException(string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user