class Byebug::CatchCommand

def execute

def execute
  return info unless @match[1]
  return 'off' == @match[1] ? clear : add(@match[1]) unless @match[2]
  return errmsg pr('catch.errors.off', off: cmd) unless @match[2] == 'off'
  remove(@match[1])
end