C# Class ZenLib.ZenException

New exception type for code known to be unreachable at runtime.
Inheritance: Exception
Exibir arquivo Open project: microsoft/Zen

Public Methods

Method Description
ZenException ( string e ) : System

Creates a new instance of the ZenException class.

ZenException ( string s, Exception innerException ) : System

Creates a new instance of the ZenException class.

Method Details

ZenException() public method

Creates a new instance of the ZenException class.
public ZenException ( string e ) : System
e string
return System

ZenException() public method

Creates a new instance of the ZenException class.
public ZenException ( string s, Exception innerException ) : System
s string The description.
innerException Exception The inner exception.
return System