Didn't find the answer on this doc, is the rescue clause called when redefining a feature?
class A
feature --
process
do
do_stuff
rescue
on_fail
end
end -- class
class B
inherit
A
redefine
process
end
feature --
process
do
do_other_stuff -- do I have to call the rescue too?
end
end -- class
Rescue clauses are not inherited like contracts and should be supplied with every new feature body if needed.