mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-19 07:43:48 +01:00
* Create WireMock.Net.MimePart project * . * REFACTOR * ILRepack * -- * ... * x * x * . * fix * public class MimePartMatcher * shared * min * . * <!--<DelaySign>true</DelaySign>--> * Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
36 lines
950 B
C#
36 lines
950 B
C#
// Copyright © WireMock.Net
|
|
|
|
using System;
|
|
|
|
namespace WireMock.Exceptions;
|
|
|
|
/// <summary>
|
|
/// WireMockException
|
|
/// </summary>
|
|
/// <seealso cref="Exception" />
|
|
public class WireMockException : Exception
|
|
{
|
|
/// <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.</param>
|
|
/// <param name="inner">The inner.</param>
|
|
public WireMockException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
}
|
|
} |