SequenceException Constructor (String, Exception) | 
 
            Initializes a new instance of the 
SequenceException class
            with a given error message and a reference to the inner exception
            that is the cause of the exception.
            
 
    Namespace: 
   MoreLinq
    Assembly:
   MoreLinq (in MoreLinq.dll) Version: 3.2.0+5205ea241d72b079436060d330cd5c2eae7cdcdf
Syntaxpublic SequenceException(
	string message,
	Exception innerException
)
Public Sub New ( 
	message As String,
	innerException As Exception
)
public:
SequenceException(
	String^ message, 
	Exception^ innerException
)
new : 
        message : string * 
        innerException : Exception -> SequenceExceptionParameters
- message
 - Type: SystemString
A message that describes the error. - innerException
 - Type: SystemException
The exception that is the cause of the current exception. 
See Also