The great stylecop update

Beware those that read into this commit. Here there be style conformance...

Closes #1252
This commit is contained in:
Jordan Brown
2021-05-09 19:27:09 -04:00
parent d25f016316
commit b9586c7fee
609 changed files with 10032 additions and 8923 deletions
@@ -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)
{
}
}
}