Search
 
SCRIPT & CODE EXAMPLE
 

RUBY

ruby begin rescue ensure

begin
  # something which might raise an exception
rescue SomeExceptionClass => some_variable
  # code that deals with some exception
rescue SomeOtherException => some_other_variable
  # code that deals with some other exception
else
  # code that runs only if *no* exception was raised
ensure
  # ensure that this code always runs, no matter what
  # does not change the final value of the block
end
Comment

ruby begin rescue ensure

begin
  fire_ze_missiles
rescue
  retry #just once more for good luck
else
  log "We set up them the bomb."
ensure
  wtf_mate
end
Comment

PREVIOUS NEXT
Code Example
Ruby :: rails not_found 
Ruby :: rails automatically downcase on create 
Ruby :: ruby check if path is a directory 
Ruby :: rails increment counter model 
Ruby :: ruby is method defined 
Ruby :: how to remove last element from array in ruby 
Ruby :: rails link_to example 
Ruby :: rails migration populate data 
Ruby :: ruby add coma to array of string 
Ruby :: rails edit models 
Ruby :: ruby how to filter through excel 
Ruby :: rails image 
Ruby :: ruby selenium webdriver proxy with authentication 
Ruby :: how to access function defined in model rails 
Ruby :: rails add index from console 
Ruby :: csv parse ruby 
Ruby :: ruby get classname 
Ruby :: sequel not ruby 
Ruby :: ruby create a copy of variable 
Ruby :: ruby array join 
R :: paste no space r 
R :: how to read number of excel sheet in r 
R :: rnorm r 
R :: list to dataframe in r 
R :: how to do logistic regression in r 
R :: write text r 
R :: change all columns type in R 
R :: how to interpolate missing data in r 
R :: autoplot confusion matrix 
R :: r dplyr summarize multiple columns 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =