MMaurice FlanaganInitial
59b956f7创建于 2018年7月20日历史提交
namespace Bemo
open System

type ExceptionHandlerPlugin() as this =

    member this.onException(e:UnhandledExceptionEventArgs) =
        ()

    interface IPlugin with
        member x.init() =
            AppDomain.CurrentDomain.UnhandledException.Add this.onException