C# Class MyMediaLite.Util.Handlers

Class containing handler functions, e.g. exception handlers
Exibir arquivo Open project: zenogantner/MML-KDD

Public Methods

Method Description
UnhandledExceptionHandler ( object sender, UnhandledExceptionEventArgs unhandled_event ) : void

React to an unhandled exceptions

Give out the error message and the stack trace, then terminate the program. FileNotFoundExceptions get special treatment.

Method Details

UnhandledExceptionHandler() public static method

React to an unhandled exceptions
Give out the error message and the stack trace, then terminate the program. FileNotFoundExceptions get special treatment.
public static UnhandledExceptionHandler ( object sender, UnhandledExceptionEventArgs unhandled_event ) : void
sender object the sender of the exception
unhandled_event System.UnhandledExceptionEventArgs the arguments of the unhandled exception
return void