forked from WireMock-Net/WireMock.Net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make some classes internal + chnage some files to file-scoped namespaces
- Loading branch information
Showing
8 changed files
with
445 additions
and
451 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,34 @@ | ||
using System; | ||
using System; | ||
|
||
namespace WireMock.Exceptions | ||
namespace WireMock.Exceptions; | ||
|
||
/// <summary> | ||
/// WireMockException | ||
/// </summary> | ||
/// <seealso cref="Exception" /> | ||
public class WireMockException : Exception | ||
{ | ||
/// <summary> | ||
/// WireMockException | ||
/// Initializes a new instance of the <see cref="WireMockException"/> class. | ||
/// </summary> | ||
/// <seealso cref="Exception" /> | ||
public class WireMockException : Exception | ||
public WireMockException() | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="WireMockException"/> class. | ||
/// </summary> | ||
public WireMockException() | ||
{ | ||
} | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the <see cref="WireMockException"/> class. | ||
/// </summary> | ||
/// <param name="message">The message that describes the error.</param> | ||
public WireMockException(string message) : base(message) | ||
{ | ||
} | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="WireMockException"/> class. | ||
/// </summary> | ||
/// <param name="message">The message that describes the error.</param> | ||
public WireMockException(string message) : base(message) | ||
{ | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the <see cref="WireMockException"/> class. | ||
/// </summary> | ||
/// <param name="message">The message.</param> | ||
/// <param name="inner">The inner.</param> | ||
public WireMockException(string message, Exception inner) : base(message, inner) | ||
{ | ||
} | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="WireMockException"/> class. | ||
/// </summary> | ||
/// <param name="message">The message.</param> | ||
/// <param name="inner">The inner.</param> | ||
public WireMockException(string message, Exception inner) : base(message, inner) | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.