Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 285 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 285 Bytes

ExceptionHandler

Requires NLog Nlog.Config NLog.Web.AspNetCore System.Data.SqlClient

Used like this

try { throw new Exception("Example exception"); } catch(Exception ex){ ex.Handle(new EmailExceptionService(), new NLogExceptionService(), new EventLogExceptionService()); }