C# Class Pchp.Library.PerlRegex.RegexMatchTimeoutException

This is the exception that is thrown when a RegEx matching timeout occurs.
Inheritance: System.TimeoutException
Show file Open project: iolevel/peachpie

Public Methods

Method Description
RegexMatchTimeoutException ( ) : System

This constructor is provided in compliance with common NetFx design patterns; developers should prefer using the constructor public RegexMatchTimeoutException(string input, string pattern, TimeSpan matchTimeout).

RegexMatchTimeoutException ( string message ) : System

This constructor is provided in compliance with common NetFx design patterns; developers should prefer using the constructor public RegexMatchTimeoutException(string input, string pattern, TimeSpan matchTimeout).

RegexMatchTimeoutException ( string message, Exception inner ) : System

This constructor is provided in compliance with common NetFx design patterns; developers should prefer using the constructor public RegexMatchTimeoutException(string input, string pattern, TimeSpan matchTimeout).

RegexMatchTimeoutException ( string regexInput, string regexPattern, System.TimeSpan matchTimeout ) : System

Constructs a new RegexMatchTimeoutException.

Method Details

RegexMatchTimeoutException() public method

This constructor is provided in compliance with common NetFx design patterns; developers should prefer using the constructor public RegexMatchTimeoutException(string input, string pattern, TimeSpan matchTimeout).
public RegexMatchTimeoutException ( ) : System
return System

RegexMatchTimeoutException() public method

This constructor is provided in compliance with common NetFx design patterns; developers should prefer using the constructor public RegexMatchTimeoutException(string input, string pattern, TimeSpan matchTimeout).
public RegexMatchTimeoutException ( string message ) : System
message string The error message that explains the reason for the exception.
return System

RegexMatchTimeoutException() public method

This constructor is provided in compliance with common NetFx design patterns; developers should prefer using the constructor public RegexMatchTimeoutException(string input, string pattern, TimeSpan matchTimeout).
public RegexMatchTimeoutException ( string message, Exception inner ) : System
message string The error message that explains the reason for the exception.
inner System.Exception The exception that is the cause of the current exception, or a null.
return System

RegexMatchTimeoutException() public method

Constructs a new RegexMatchTimeoutException.
public RegexMatchTimeoutException ( string regexInput, string regexPattern, System.TimeSpan matchTimeout ) : System
regexInput string Matching timeout occurred during matching within the specified input.
regexPattern string Matching timeout occurred during matching to the specified pattern.
matchTimeout System.TimeSpan Matching timeout occurred because matching took longer than the specified timeout.
return System