module Byebug::InfoFunctions

def info_catch(*args)

def info_catch(*args)
  return print "No frame selected.\n" unless @state.context
  if Byebug.catchpoints and not Byebug.catchpoints.empty?
    Byebug.catchpoints.each do |exception, hits|
      print "#{exception}: #{exception.is_a?(Class)}\n"
    end
  else
    print "No exceptions set to be caught.\n"
  end
end