class DEBUGGER__::Session

def clear_catch_breakpoints *exception_names

def clear_catch_breakpoints *exception_names
  clear_breakpoints do |k, bp|
    bp.is_a?(CatchBreakpoint) && exception_names.include?(k[1])
  end
end