I'm using eurovat
gem to check a VAT number.
Eurovat.check_vat_number vat_number
If I run that from irb, sometimes I receive this:
SOAP::FaultError: MS_UNAVAILABLE
from
(Nothing appear after "from")
I want to write a begin rescue
block to rescue those error, but how I do know what to rescue?
I have tried with rescue SOAP::FaultError
but didn't works