Exception handling

# any method can throw an error
def method_with_exception()
    raise "test exception"
end

method_with_exception() # <-Error