Rake 任务:错误处理
我还在学习Rake。
Rake 是否内置支持处理任务错误,如 NANT 的 MSBuild:如果此任务失败;执行另一个任务(回滚等),
例如:在 MSBuild 中,它们有 OnError
元素
<OnError ExecuteTargets="RollBackDatabase" />
感谢您的帮助
I am still learning Rake.
Does Rake has built in support to handle task's error like MSBuild of NANT: if this task failed; execute anoter tasks (rolling back, etc.)
e.g.: in MSBuild they have OnError
element
<OnError ExecuteTargets="RollBackDatabase" />
Thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到答案:
只需使用正常的异常处理块
Found out the answer:
just use normal exception handling block