mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-19 00:37:42 +01:00
34 lines
920 B
C#
34 lines
920 B
C#
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)
|
|
{
|
|
}
|
|
} |