C# Class FP.Validation.EmptyEnumerableException

Thrown by the methods which require their argument to be non-empty when called on an empty sequence.
Inheritance: System.ArgumentException
Show file Open project: lukesandberg/PexFaultLocalization

Public Methods

Method Description
EmptyEnumerableException ( ) : System

Initializes a new instance of the EmptyEnumerableException class.

EmptyEnumerableException ( string paramName ) : System

Initializes a new instance of the EmptyEnumerableException class.

EmptyEnumerableException ( string message, Exception innerException ) : System

Initializes a new instance of the EmptyEnumerableException class.

EmptyEnumerableException ( string message, string paramName ) : System

Initializes a new instance of the EmptyEnumerableException class.

EmptyEnumerableException ( string message, string paramName, Exception innerException ) : System

Initializes a new instance of the EmptyEnumerableException class.

Protected Methods

Method Description
EmptyEnumerableException ( SerializationInfo info, StreamingContext context ) : System

Method Details

EmptyEnumerableException() public method

Initializes a new instance of the EmptyEnumerableException class.
public EmptyEnumerableException ( ) : System
return System

EmptyEnumerableException() protected method

protected EmptyEnumerableException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
return System

EmptyEnumerableException() public method

Initializes a new instance of the EmptyEnumerableException class.
public EmptyEnumerableException ( string paramName ) : System
paramName string The name of the parameter.
return System

EmptyEnumerableException() public method

Initializes a new instance of the EmptyEnumerableException class.
public EmptyEnumerableException ( string message, Exception innerException ) : System
message string The message.
innerException System.Exception The inner exception.
return System

EmptyEnumerableException() public method

Initializes a new instance of the EmptyEnumerableException class.
public EmptyEnumerableException ( string message, string paramName ) : System
message string The message.
paramName string Name of the param.
return System

EmptyEnumerableException() public method

Initializes a new instance of the EmptyEnumerableException class.
public EmptyEnumerableException ( string message, string paramName, Exception innerException ) : System
message string The message.
paramName string Name of the param.
innerException System.Exception The inner exception.
return System