Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumRubycustom exceptionsSingle-choice MCQ

What does the bare `rescue` in this method catch?

def risky raise Interrupt rescue => e "caught #{e.class}" end