namespace TurnstileTag;
///
/// The that is thrown when the turnstile validation fails.
///
public class TurnstileException : Exception
{
///
/// Creates a new instance of with the specified exception message.
///
/// The message that describes the error.
public TurnstileException(string message) : base(message) { }
///
/// Creates a new instance of with the specified exception message and inner exception.
///
/// The message that describes the error.
/// The inner .
public TurnstileException(string message, Exception innerException) : base(message, innerException) { }
}