🎉 I'm releasing 12 products in 12 months! If you love product, checkout my new blog workingoutloud.dev

Back to home

Ruby Error Handling

    This is a basic example of raising and exception and rescueing the thrown exception.

    def raise_and_rescue begin puts 'I am before the raise.' raise 'An error has occured.' puts 'I am after the raise.' rescue puts 'I am rescued.' end puts 'I am after the begin block.' end

    Personal image

    Dennis O'Keeffe

    @dennisokeeffe92
    • Melbourne, Australia

    Hi, I am a professional Software Engineer. Formerly of Culture Amp, UsabilityHub, Present Company and NightGuru.
    I am currently working on Visibuild.

    1,200+ PEOPLE ALREADY JOINED ❤️️

    Get fresh posts + news direct to your inbox.

    No spam. We only send you relevant content.

    Ruby Error Handling

    Introduction

    Share this post