C# Class ReactiveUI.UnhandledErrorException

Indicates that an object implementing IHandleObservableErrors has errored and nothing is attached to IHandleObservableErrors.ThrownExceptions to handle that error.
Inheritance: System.Exception
Exibir arquivo Open project: reactiveui/ReactiveUI

Public Methods

Method Description
UnhandledErrorException ( ) : System

Creates a new instance of UnhandledErrorException.

UnhandledErrorException ( string message ) : System

Creates a new instance of UnhandledErrorException.

UnhandledErrorException ( string message, Exception innerException ) : System

Creates a new instance of UnhandledErrorException.

Method Details

UnhandledErrorException() public method

Creates a new instance of UnhandledErrorException.
public UnhandledErrorException ( ) : System
return System

UnhandledErrorException() public method

Creates a new instance of UnhandledErrorException.
public UnhandledErrorException ( string message ) : System
message string /// The exception message. ///
return System

UnhandledErrorException() public method

Creates a new instance of UnhandledErrorException.
public UnhandledErrorException ( string message, Exception innerException ) : System
message string /// The exception message. ///
innerException System.Exception /// The exception that caused this exception. ///
return System