// Copyright © WireMock.Net
using System;
namespace WireMock.Exceptions;
///
/// WireMockException
///
///
public class WireMockException : Exception
{
///
/// Initializes a new instance of the class.
///
public WireMockException()
{
}
///
/// Initializes a new instance of the class.
///
/// The message that describes the error.
public WireMockException(string message) : base(message)
{
}
///
/// Initializes a new instance of the class.
///
/// The message.
/// The inner.
public WireMockException(string message, Exception inner) : base(message, inner)
{
}
}