When my api returns any status code different from 200, I get this error/crash:
--------- beginning of main
--------- beginning of system
(main)> 08-19 15:56:03.087 31788 31952 E br/com/rubythree/hello: Java exception raised: java.io.FileNotFoundException: http://192.168.1.119:3000/api/tokens.json
--------- beginning of crash
My call:
begin
Net.post(url, options) do |response|
p response.body
end
rescue => e
p e
p e.message
end
I try to add a begin/rescue blocks, but it didnt work.