标签: ruby exception exception-handling
我正在处理this message的例外情况。它不是StandardError。
StandardError
我通过捕获Exception类来捕获它,但是a post告诉它是一个糟糕的解决方案。如何确定要捕获的异常?
Exception
答案 0 :(得分:1)
临时添加到您的代码
rescue Exception => e puts e.class end
你会知道要捕获的异常