Quartz.NET - 使用 IJobListener 获取作业异常
我正在使用 Quartz.NET 创建一个应用程序,目前我有一个 IJobListener 监听作业中的任何错误,然后向管理员发送电子邮件。如果我也可以通过电子邮件发送生成的异常,那就太好了,但是如何从 IJobListener 获取异常?
I'm using Quartz.NET for an application I am creating, and I currently have an IJobListener listening for any errors with jobs, then sending emails off to the administrators. It'd be great if I could email the exception generated too, but how do I get the exception from the IJobListener?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JobWasExecuted
方法传递一个JobExecutionException
(如果在触发作业期间抛出异常)。The
JobWasExecuted
method is passed aJobExecutionException
(if one was thrown during the triggering of the job).