C# Class MultiException, PexFaultLocalization

Inheritance: ArgumentException
Show file Open project: lukesandberg/PexFaultLocalization Class Usage Examples

Public Methods

Method Description
MultiException ( ) : System

Initializes a new instance of the MultiException class.

MultiException ( IEnumerable innerExceptions ) : System

Create multi exception

MultiException ( string message ) : System

Initializes a new instance of the MultiException class.

MultiException ( string message, ArgumentException innerException ) : System

Initializes a new instance of the MultiException class.

MultiException ( string message, IEnumerable innerExceptions ) : System

Initializes a new instance of the MultiException class.

Private Methods

Method Description
BuildMessage ( IEnumerable exceptions ) : string

Builds a message from the exceptions' messages.

MultiException ( SerializationInfo info, StreamingContext context ) : System

Create multi exception

Method Details

MultiException() public method

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

MultiException() public method

Create multi exception
public MultiException ( IEnumerable innerExceptions ) : System
innerExceptions IEnumerable The inner exceptions.
return System

MultiException() public method

Initializes a new instance of the MultiException class.
public MultiException ( string message ) : System
message string The message.
return System

MultiException() public method

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

MultiException() public method

Initializes a new instance of the MultiException class.
public MultiException ( string message, IEnumerable innerExceptions ) : System
message string The message.
innerExceptions IEnumerable The inner exceptions.
return System