SlideShare uma empresa Scribd logo
1 de 16
Baixar para ler 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.

Mais conteúdo relacionado

Destaque (20)

Cute Babies 013703
Cute Babies 013703Cute Babies 013703
Cute Babies 013703
 
W W2tanks
W W2tanksW W2tanks
W W2tanks
 
Ruby Exceptions
Ruby ExceptionsRuby Exceptions
Ruby Exceptions
 
Sample
SampleSample
Sample
 
Sample
SampleSample
Sample
 
Sample
SampleSample
Sample
 
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
 
Sample
SampleSample
Sample
 
Sample
SampleSample
Sample
 
Sample
SampleSample
Sample
 
Sample
SampleSample
Sample
 
ruby_exceptions.pdf
ruby_exceptions.pdfruby_exceptions.pdf
ruby_exceptions.pdf
 
Sample
SampleSample
Sample
 
Sample
SampleSample
Sample
 
ruby_exceptions.pdf
ruby_exceptions.pdfruby_exceptions.pdf
ruby_exceptions.pdf
 
ruby_exceptions.pdf
ruby_exceptions.pdfruby_exceptions.pdf
ruby_exceptions.pdf
 
ruby_exceptions.pdf
ruby_exceptions.pdfruby_exceptions.pdf
ruby_exceptions.pdf
 
Animal Idiom 1take The Bll..
Animal Idiom 1take The Bll..Animal Idiom 1take The Bll..
Animal Idiom 1take The Bll..
 
e and vportfolios
e and vportfoliose and vportfolios
e and vportfolios
 

Semelhante a Exception Handling in Ruby: An Overview

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
 

Semelhante a Exception Handling in Ruby: An Overview (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
 

Mais de 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
 
vincent-van-gogh3878.pps
vincent-van-gogh3878.ppsvincent-van-gogh3878.pps
vincent-van-gogh3878.ppsguest6e4b7c
 
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
 

Mais de guest6e4b7c (17)

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
 
vincent-van-gogh3878.pps
vincent-van-gogh3878.ppsvincent-van-gogh3878.pps
vincent-van-gogh3878.pps
 
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
 
Sample
SampleSample
Sample
 

Último

Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
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
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate Agents
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate AgentsRyan Mahoney - Will Artificial Intelligence Replace Real Estate Agents
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate AgentsRyan Mahoney
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
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
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 

Último (20)

Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
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
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate Agents
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate AgentsRyan Mahoney - Will Artificial Intelligence Replace Real Estate Agents
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate Agents
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
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
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 

Exception Handling in Ruby: An Overview

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