System.Text.RegularExpressions.RegexMatchTimeoutException
namespace System.Text.RegularExpressions
{
public class RegexMatchTimeoutException : TimeoutException, ISerializable
{
public string Input { get; }
public TimeSpan MatchTimeout { get; }
public string Pattern { get; }
public RegexMatchTimeoutException();
protected RegexMatchTimeoutException(SerializationInfo info, StreamingContext context);
public RegexMatchTimeoutException(string message);
public RegexMatchTimeoutException(string message, Exception inner);
public RegexMatchTimeoutException(string regexInput, string regexPattern, TimeSpan matchTimeout);
}
}