class Byebug::CatchCommand

def info

def info
  if Byebug.catchpoints && !Byebug.catchpoints.empty?
    Byebug.catchpoints.each_key do |exception|
      puts("#{exception}: #{exception.is_a?(Class)}")
    end
  else
    puts "No exceptions set to be caught."
  end
end