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 Sample

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 Sample (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 guest6e4b7c

Google 1195446284844957 5
Google 1195446284844957 5Google 1195446284844957 5
Google 1195446284844957 5guest6e4b7c
 
Cute Babies 013703
Cute Babies 013703Cute Babies 013703
Cute Babies 013703guest6e4b7c
 
Google 1195446284844957 5
Google 1195446284844957 5Google 1195446284844957 5
Google 1195446284844957 5guest6e4b7c
 
Cute Babies 013703
Cute Babies 013703Cute Babies 013703
Cute Babies 013703guest6e4b7c
 
Vincent Van Gogh3878
Vincent Van Gogh3878Vincent Van Gogh3878
Vincent Van Gogh3878guest6e4b7c
 
Google 1195446284844957 5
Google 1195446284844957 5Google 1195446284844957 5
Google 1195446284844957 5guest6e4b7c
 
Vincent Van Gogh3878
Vincent Van Gogh3878Vincent Van Gogh3878
Vincent Van Gogh3878guest6e4b7c
 
Google 1195446284844957 5
Google 1195446284844957 5Google 1195446284844957 5
Google 1195446284844957 5guest6e4b7c
 
Cute Babies 013703
Cute Babies 013703Cute Babies 013703
Cute Babies 013703guest6e4b7c
 
vincent-van-gogh3878.pps
vincent-van-gogh3878.ppsvincent-van-gogh3878.pps
vincent-van-gogh3878.ppsguest6e4b7c
 
ruby_exceptions.pdf
ruby_exceptions.pdfruby_exceptions.pdf
ruby_exceptions.pdfguest6e4b7c
 
vincent-van-gogh3878.pps
vincent-van-gogh3878.ppsvincent-van-gogh3878.pps
vincent-van-gogh3878.ppsguest6e4b7c
 
ruby_exceptions.pdf
ruby_exceptions.pdfruby_exceptions.pdf
ruby_exceptions.pdfguest6e4b7c
 
vincent-van-gogh3878.pps
vincent-van-gogh3878.ppsvincent-van-gogh3878.pps
vincent-van-gogh3878.ppsguest6e4b7c
 
ruby_exceptions.pdf
ruby_exceptions.pdfruby_exceptions.pdf
ruby_exceptions.pdfguest6e4b7c
 
vincent-van-gogh3878.pps
vincent-van-gogh3878.ppsvincent-van-gogh3878.pps
vincent-van-gogh3878.ppsguest6e4b7c
 
ruby_exceptions.pdf
ruby_exceptions.pdfruby_exceptions.pdf
ruby_exceptions.pdfguest6e4b7c
 

More from guest6e4b7c (20)

Google 1195446284844957 5
Google 1195446284844957 5Google 1195446284844957 5
Google 1195446284844957 5
 
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
 
Vincent Van Gogh3878
Vincent Van Gogh3878Vincent Van Gogh3878
Vincent Van Gogh3878
 
Google 1195446284844957 5
Google 1195446284844957 5Google 1195446284844957 5
Google 1195446284844957 5
 
Ruby Exceptions
Ruby ExceptionsRuby Exceptions
Ruby Exceptions
 
Vincent Van Gogh3878
Vincent Van Gogh3878Vincent Van Gogh3878
Vincent Van Gogh3878
 
Ruby Exceptions
Ruby ExceptionsRuby Exceptions
Ruby Exceptions
 
Google 1195446284844957 5
Google 1195446284844957 5Google 1195446284844957 5
Google 1195446284844957 5
 
Cute Babies 013703
Cute Babies 013703Cute Babies 013703
Cute Babies 013703
 
vincent-van-gogh3878.pps
vincent-van-gogh3878.ppsvincent-van-gogh3878.pps
vincent-van-gogh3878.pps
 
ruby_exceptions.pdf
ruby_exceptions.pdfruby_exceptions.pdf
ruby_exceptions.pdf
 
vincent-van-gogh3878.pps
vincent-van-gogh3878.ppsvincent-van-gogh3878.pps
vincent-van-gogh3878.pps
 
ruby_exceptions.pdf
ruby_exceptions.pdfruby_exceptions.pdf
ruby_exceptions.pdf
 
vincent-van-gogh3878.pps
vincent-van-gogh3878.ppsvincent-van-gogh3878.pps
vincent-van-gogh3878.pps
 
ruby_exceptions.pdf
ruby_exceptions.pdfruby_exceptions.pdf
ruby_exceptions.pdf
 
WW2tanks.pdf
WW2tanks.pdfWW2tanks.pdf
WW2tanks.pdf
 
vincent-van-gogh3878.pps
vincent-van-gogh3878.ppsvincent-van-gogh3878.pps
vincent-van-gogh3878.pps
 
ruby_exceptions.pdf
ruby_exceptions.pdfruby_exceptions.pdf
ruby_exceptions.pdf
 

Recently uploaded

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
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsPrecisely
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
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
 
"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
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 

Recently uploaded (20)

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
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
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
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power Systems
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
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
 
"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...
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 

Sample

  • 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.