From 53ac0a2963811c76b4d6adb4f37c3e181c3d6dd9 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 29 Jan 2018 17:11:24 -0500 Subject: [PATCH] add initial share/svi/svi.rb --- share/svi/svi.rb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 share/svi/svi.rb diff --git a/share/svi/svi.rb b/share/svi/svi.rb new file mode 100644 index 0000000..94df7aa --- /dev/null +++ b/share/svi/svi.rb @@ -0,0 +1,8 @@ +begin +rescue Interrupt => e +rescue Exception => e + $stderr.puts "Exception: #{e}" + e.backtrace.each do |entry| + $stderr.puts "> #{entry}" + end +end