class DEBUGGER__::CatchBreakpoint

def initialize pat, cond: nil, command: nil, path: nil

def initialize pat, cond: nil, command: nil, path: nil
  @pat = pat.freeze
  @key = [:catch, @pat].freeze
  @last_exc = nil
  super(cond, command, path)
end