kekyo/Lepracaun

Exceptions is not thrown

Closed this issue · 3 comments

using var app = new Application();

app.Run(async () =>
{
    throw new NotImplementedException();
});

Just quits without any messages

kekyo commented

@GazziFX Oh, thanks reporting,

This was caused by an UnhandledException event that could receive an occurrence, but if no one handled this event, the event was ignored. This will be fixed soon.

kekyo commented

Fixed it and being deployed 1.1.0, could you try it?

Yes, it works, thanks!