CodingStlye: Fixing whitespaces

This commit is contained in:
Zoe Roux
2021-09-03 21:52:15 +02:00
parent 8ff2fe3965
commit d3a03771dd
152 changed files with 2138 additions and 2120 deletions
@@ -15,7 +15,7 @@ namespace Kyoo.Abstractions.Models.Exceptions
public DuplicatedItemException()
: base("Already exists in the database.")
{ }
/// <summary>
/// Create a new <see cref="DuplicatedItemException"/> with a custom message.
/// </summary>
@@ -23,7 +23,7 @@ namespace Kyoo.Abstractions.Models.Exceptions
public DuplicatedItemException(string message)
: base(message)
{ }
/// <summary>
/// The serialization constructor
/// </summary>
@@ -15,24 +15,24 @@ namespace Kyoo.Abstractions.Models.Exceptions
/// </summary>
public TaskFailedException()
: base("A task failed.")
{}
{ }
/// <summary>
/// Create a new <see cref="TaskFailedException"/> with a custom message.
/// </summary>
/// <param name="message">The message to use.</param>
public TaskFailedException(string message)
: base(message)
{}
{ }
/// <summary>
/// Create a new <see cref="TaskFailedException"/> wrapping another exception.
/// </summary>
/// <param name="exception">The exception to wrap.</param>
public TaskFailedException(Exception exception)
: base(exception)
{}
{ }
/// <summary>
/// The serialization constructor
/// </summary>