>>>>> "T" == Thomas Sondergaard <thomas / FirstNameGoesHereSondergaard.com> writes: T> How do you handle exceptions in a ruby extension? I see rb_rescue, but it T> don't see how I get at the exception object in func2. use rb_protect() then retrieve $! if you have an error. Guy Decoux