aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/debrew/exception.rb
blob: da8e56dae0d202ceee2675948f1c40eddfcd1e4a (plain)
1
2
3
4
5
6
7
class Exception
  attr_accessor :continuation

  def restart(&block)
    continuation.call block
  end
end