SlideShare a Scribd company logo
1 of 16
Download to read offline
‘Exception Handling in RUBY’




                           ‘Exception Handling in RUBY’

                                          Joy Menon

                   Department of Computer Science and Engineering, IIT Mumbai.


                                     24 November 2004
‘Exception Handling in RUBY’




A Brief Outline

             Exception Handling: WHY?
                     Errors and Error Codes
                     The Need for Exception Handling

             Exception Handling in Ruby:
                     The Exception Class
                     Exception Class Heirarchy
                     Handling Exceptions
                     Raising Exceptions
                     Catch/Throw Clauses


             Conclusions
‘Exception Handling in RUBY’
  Exception Handling: WHY?
     Errors and Error Codes



Errors and Error Codes

              In any programming, occurance of errors is a distinct reality.
              Errors need to be handled gracefully to avoid abrupt failures.
              Code that detects error may not have context to handle it.
                     For example, attempting to open a file that doesn’t exist is
                     acceptable in some circumstances and is a fatal error at other
                     times. What does the file-handling module do?

              Conventionally it was done using error-checking and
              return-codes mechanism.
              Functions were checked for return values, and if the return
              code indicated failure, this code was interpreted and passed
              up the call stack.
‘Exception Handling in RUBY’
  Exception Handling: WHY?
     The Need for Exception Handling



The Need for Exception Handling

             However Error-codes mechanism has following shortcomings:
                     Handling all errors through error codes is simply not possible.
                     Moving error codes up the function call stack is complicated.
                     Managing all the error-codes and associated code is tedious.

             The Exception Handling mechanism addresses these
             shortcomings.
                     Exceptions allow packaging info about error in an object.
                     Exception handling helps propagate object up the call stack.
                     Runtime system locates code that knows to handle the error.


             Exception handling is essential for achieving well-designed object
             oriented code, and therefore Ruby provides a mechanism for same.
‘Exception Handling in RUBY’
  Exception Handling in Ruby
     The Exception Class



The Exception Class

             As in other object oriented languages, Ruby offers a
             mechanism for exception handling.

             When an exception occurs..
                     Object of class Exception, or one of it’s children, created.
                     Exception is associated to message string & a stack backtrace.
                     All information about the exception is packaged in this object.

             IOError, ZeroDivisionError, TypeError, SystemCallError, etc
             are examples of exceptions derived from class Exception.

             Ruby predefines a hierarchy of exceptions: see next slide.
‘Exception Handling in RUBY’
  Exception Class Heirarchy




Exception Class Heirarchy
‘Exception Handling in RUBY’
  User Defined Exceptions




User Defined Exceptions


      User-Defined Exception
             Users can create exception classes of their own.

             These must inherit from class StandardError or its children.

             If they dont, such exceptions will not be detected by default.

             They may include more specific information about the
             exception.
‘Exception Handling in RUBY’
  User Defined Exceptions
     Handling Exceptions



Handling Exceptions
             The basic approach to exception handling involves the use of:
                     Enclose candidate code in begin/end block.
                     Use rescue block to handle specific class of exceptions,
                     where:
                               Report the error,
                               Code to handle detected error,
                               Raise the exception using raise.
                     Use ensure block to ensure execution of some essential code
                     after handling, like deallocation of resources such as DB
                     connections, etc.

             We can draw analogies to C++/Java exception handling:
                 begin/end block for candidate code. (like try block)
                 rescue blocks for handling code. (like catch blocks)
                 raise command for raising the exception. (like throw)
                 ensure command for necessary handling. (like final)
‘Exception Handling in RUBY’
  User Defined Exceptions
     Handling Exceptions



Example: Using rescue, raise and ensure
‘Exception Handling in RUBY’
  User Defined Exceptions
     Handling Exceptions



Handling Exceptions (continued..)


             Variables
                     $ refers to the default global variable that stores the exception
                     object for the exception.
                     stderrobj is an example of user-defined variable storing the
                     reference to the exception object.


             Matching exceptions to correct rescue block is like the case
             statement mechanism,
             object.kindof? result compared to exception types in
             rescue statements.
‘Exception Handling in RUBY’
  User Defined Exceptions
     Raising Exceptions



Raising Exceptions
              Raising exceptions deliberately in code help to trigger alerts
              where errors are expected and need to be handled.

              The raise statement can take the following forms:
                     raise
                     Raises current exception again, or RuntimeError if none.

                     raise <message>
                     Creates new RuntimeError exception, associates it with
                     mentioned string, and raises the exception up the call stack.

                     raise <exception class>, <message>, <call stack>
                     Creates exception with arg-1 used as required exception type,
                     arg-2 as message string, and arg-3 as stack trace.
‘Exception Handling in RUBY’
  User Defined Exceptions
     Raising Exceptions



Example: Typical Usage of raise
‘Exception Handling in RUBY’
  User Defined Exceptions
     The Catch/Throw Clauses



The catch/throw Clauses
             The rescue and raise mechanism is thus used for
             abandoning execution when unwanted errors occur.
             The catch and throw mechanism is used to continue
             execution at some point up the call stack.

             Working of catch/throw:
                     catch defines a block with a specific label.
                     The block is exeuted, typically accross nested functions, till a
                     throw followed by the label is encountered.
                     The call stack is then scoured for a catch block with a
                     matching label.
                     On a match, Ruby rolls back execution to the point and
                     terminates the block.
                     If the throw had an optional 2nd argument, it is returned as
                     value of the catch block.
‘Exception Handling in RUBY’
  User Defined Exceptions
     The Catch/Throw Clauses



Example: Typical usage of catch/throw
‘Exception Handling in RUBY’
  Conclusions




Conclusions

                Exception Handling is essential for managing errors in
                object-oriented code.

                The Ruby Exception Handling mechanism includes:
                     rescue and final clauses - for handling unwanted errors and
                     exit gracefully.

                     raise - for deliberately creating and raising exceptions in
                     code.

                     catch and throw clause - for continuing execution at some
                     point up the function call stack.
‘Exception Handling in RUBY’
  Conclusions




References



             http://www.insula.cz/dali/material/rbycl/.
             http://www.ruby-lang.org/.
             Dave Thomas and Chad Fowler and Andy Hunt.
             Programming Ruby: The Pragmatic Programmers’ Guide.
             Pragmatic Bookshelf, Oct 2004.

More Related Content

Similar to Ruby Exceptions

Unit5 java
Unit5 javaUnit5 java
Unit5 javamrecedu
 
Class notes(week 8) on exception handling
Class notes(week 8) on exception handlingClass notes(week 8) on exception handling
Class notes(week 8) on exception handlingKuntal Bhowmick
 
Exceptions overview
Exceptions overviewExceptions overview
Exceptions overviewBharath K
 
Java Exception handling
Java Exception handlingJava Exception handling
Java Exception handlingkamal kotecha
 
Class notes(week 8) on exception handling
Class notes(week 8) on exception handlingClass notes(week 8) on exception handling
Class notes(week 8) on exception handlingKuntal Bhowmick
 
Ch-1_5.pdf this is java tutorials for all
Ch-1_5.pdf this is java tutorials for allCh-1_5.pdf this is java tutorials for all
Ch-1_5.pdf this is java tutorials for allHayomeTakele
 
Exception Handling in Java
Exception Handling in JavaException Handling in Java
Exception Handling in JavaJava2Blog
 
Java programming-Event Handling
Java programming-Event HandlingJava programming-Event Handling
Java programming-Event HandlingJava Programming
 
Exception Handling: Designing Robust Software in Ruby (with presentation note)
Exception Handling: Designing Robust Software in Ruby (with presentation note)Exception Handling: Designing Robust Software in Ruby (with presentation note)
Exception Handling: Designing Robust Software in Ruby (with presentation note)Wen-Tien Chang
 
Exception handling
Exception handlingException handling
Exception handlingzindadili
 

Similar to Ruby Exceptions (12)

Unit5 java
Unit5 javaUnit5 java
Unit5 java
 
Class notes(week 8) on exception handling
Class notes(week 8) on exception handlingClass notes(week 8) on exception handling
Class notes(week 8) on exception handling
 
Exceptions overview
Exceptions overviewExceptions overview
Exceptions overview
 
Java Exception handling
Java Exception handlingJava Exception handling
Java Exception handling
 
Exception handling
Exception handlingException handling
Exception handling
 
Class notes(week 8) on exception handling
Class notes(week 8) on exception handlingClass notes(week 8) on exception handling
Class notes(week 8) on exception handling
 
Ch-1_5.pdf this is java tutorials for all
Ch-1_5.pdf this is java tutorials for allCh-1_5.pdf this is java tutorials for all
Ch-1_5.pdf this is java tutorials for all
 
Exception Handling in Java
Exception Handling in JavaException Handling in Java
Exception Handling in Java
 
Exceptionhandling
ExceptionhandlingExceptionhandling
Exceptionhandling
 
Java programming-Event Handling
Java programming-Event HandlingJava programming-Event Handling
Java programming-Event Handling
 
Exception Handling: Designing Robust Software in Ruby (with presentation note)
Exception Handling: Designing Robust Software in Ruby (with presentation note)Exception Handling: Designing Robust Software in Ruby (with presentation note)
Exception Handling: Designing Robust Software in Ruby (with presentation note)
 
Exception handling
Exception handlingException handling
Exception handling
 

More from guest0046de

Google 1195446284844957 5
Google 1195446284844957 5Google 1195446284844957 5
Google 1195446284844957 5guest0046de
 
Cute Babies 013703
Cute Babies 013703Cute Babies 013703
Cute Babies 013703guest0046de
 
Cute Babies 013703
Cute Babies 013703Cute Babies 013703
Cute Babies 013703guest0046de
 
Google 1195446284844957 5
Google 1195446284844957 5Google 1195446284844957 5
Google 1195446284844957 5guest0046de
 
Cute Babies 013703
Cute Babies 013703Cute Babies 013703
Cute Babies 013703guest0046de
 

More from guest0046de (10)

Ruby Exceptions
Ruby ExceptionsRuby Exceptions
Ruby Exceptions
 
Ruby Exceptions
Ruby ExceptionsRuby Exceptions
Ruby Exceptions
 
Google 1195446284844957 5
Google 1195446284844957 5Google 1195446284844957 5
Google 1195446284844957 5
 
Sample
SampleSample
Sample
 
Ruby Exceptions
Ruby ExceptionsRuby Exceptions
Ruby Exceptions
 
Ruby Exceptions
Ruby ExceptionsRuby Exceptions
Ruby Exceptions
 
Cute Babies 013703
Cute Babies 013703Cute Babies 013703
Cute Babies 013703
 
Cute Babies 013703
Cute Babies 013703Cute Babies 013703
Cute Babies 013703
 
Google 1195446284844957 5
Google 1195446284844957 5Google 1195446284844957 5
Google 1195446284844957 5
 
Cute Babies 013703
Cute Babies 013703Cute Babies 013703
Cute Babies 013703
 

Recently uploaded

"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 

Recently uploaded (20)

"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 

Ruby Exceptions

  • 1. ‘Exception Handling in RUBY’ ‘Exception Handling in RUBY’ Joy Menon Department of Computer Science and Engineering, IIT Mumbai. 24 November 2004
  • 2. ‘Exception Handling in RUBY’ A Brief Outline Exception Handling: WHY? Errors and Error Codes The Need for Exception Handling Exception Handling in Ruby: The Exception Class Exception Class Heirarchy Handling Exceptions Raising Exceptions Catch/Throw Clauses Conclusions
  • 3. ‘Exception Handling in RUBY’ Exception Handling: WHY? Errors and Error Codes Errors and Error Codes In any programming, occurance of errors is a distinct reality. Errors need to be handled gracefully to avoid abrupt failures. Code that detects error may not have context to handle it. For example, attempting to open a file that doesn’t exist is acceptable in some circumstances and is a fatal error at other times. What does the file-handling module do? Conventionally it was done using error-checking and return-codes mechanism. Functions were checked for return values, and if the return code indicated failure, this code was interpreted and passed up the call stack.
  • 4. ‘Exception Handling in RUBY’ Exception Handling: WHY? The Need for Exception Handling The Need for Exception Handling However Error-codes mechanism has following shortcomings: Handling all errors through error codes is simply not possible. Moving error codes up the function call stack is complicated. Managing all the error-codes and associated code is tedious. The Exception Handling mechanism addresses these shortcomings. Exceptions allow packaging info about error in an object. Exception handling helps propagate object up the call stack. Runtime system locates code that knows to handle the error. Exception handling is essential for achieving well-designed object oriented code, and therefore Ruby provides a mechanism for same.
  • 5. ‘Exception Handling in RUBY’ Exception Handling in Ruby The Exception Class The Exception Class As in other object oriented languages, Ruby offers a mechanism for exception handling. When an exception occurs.. Object of class Exception, or one of it’s children, created. Exception is associated to message string & a stack backtrace. All information about the exception is packaged in this object. IOError, ZeroDivisionError, TypeError, SystemCallError, etc are examples of exceptions derived from class Exception. Ruby predefines a hierarchy of exceptions: see next slide.
  • 6. ‘Exception Handling in RUBY’ Exception Class Heirarchy Exception Class Heirarchy
  • 7. ‘Exception Handling in RUBY’ User Defined Exceptions User Defined Exceptions User-Defined Exception Users can create exception classes of their own. These must inherit from class StandardError or its children. If they dont, such exceptions will not be detected by default. They may include more specific information about the exception.
  • 8. ‘Exception Handling in RUBY’ User Defined Exceptions Handling Exceptions Handling Exceptions The basic approach to exception handling involves the use of: Enclose candidate code in begin/end block. Use rescue block to handle specific class of exceptions, where: Report the error, Code to handle detected error, Raise the exception using raise. Use ensure block to ensure execution of some essential code after handling, like deallocation of resources such as DB connections, etc. We can draw analogies to C++/Java exception handling: begin/end block for candidate code. (like try block) rescue blocks for handling code. (like catch blocks) raise command for raising the exception. (like throw) ensure command for necessary handling. (like final)
  • 9. ‘Exception Handling in RUBY’ User Defined Exceptions Handling Exceptions Example: Using rescue, raise and ensure
  • 10. ‘Exception Handling in RUBY’ User Defined Exceptions Handling Exceptions Handling Exceptions (continued..) Variables $ refers to the default global variable that stores the exception object for the exception. stderrobj is an example of user-defined variable storing the reference to the exception object. Matching exceptions to correct rescue block is like the case statement mechanism, object.kindof? result compared to exception types in rescue statements.
  • 11. ‘Exception Handling in RUBY’ User Defined Exceptions Raising Exceptions Raising Exceptions Raising exceptions deliberately in code help to trigger alerts where errors are expected and need to be handled. The raise statement can take the following forms: raise Raises current exception again, or RuntimeError if none. raise <message> Creates new RuntimeError exception, associates it with mentioned string, and raises the exception up the call stack. raise <exception class>, <message>, <call stack> Creates exception with arg-1 used as required exception type, arg-2 as message string, and arg-3 as stack trace.
  • 12. ‘Exception Handling in RUBY’ User Defined Exceptions Raising Exceptions Example: Typical Usage of raise
  • 13. ‘Exception Handling in RUBY’ User Defined Exceptions The Catch/Throw Clauses The catch/throw Clauses The rescue and raise mechanism is thus used for abandoning execution when unwanted errors occur. The catch and throw mechanism is used to continue execution at some point up the call stack. Working of catch/throw: catch defines a block with a specific label. The block is exeuted, typically accross nested functions, till a throw followed by the label is encountered. The call stack is then scoured for a catch block with a matching label. On a match, Ruby rolls back execution to the point and terminates the block. If the throw had an optional 2nd argument, it is returned as value of the catch block.
  • 14. ‘Exception Handling in RUBY’ User Defined Exceptions The Catch/Throw Clauses Example: Typical usage of catch/throw
  • 15. ‘Exception Handling in RUBY’ Conclusions Conclusions Exception Handling is essential for managing errors in object-oriented code. The Ruby Exception Handling mechanism includes: rescue and final clauses - for handling unwanted errors and exit gracefully. raise - for deliberately creating and raising exceptions in code. catch and throw clause - for continuing execution at some point up the function call stack.
  • 16. ‘Exception Handling in RUBY’ Conclusions References http://www.insula.cz/dali/material/rbycl/. http://www.ruby-lang.org/. Dave Thomas and Chad Fowler and Andy Hunt. Programming Ruby: The Pragmatic Programmers’ Guide. Pragmatic Bookshelf, Oct 2004.