Hi, At Fri, 30 Jan 2004 08:37:10 +0900, Joel VanderWerf wrote: > Shouldn't these work the same? > > irb(main):012:0> begin; raise; rescue; end > => nil > irb(main):013:0> begin; raise; rescue *[]; end > RuntimeError: > from (irb):13 I think rescue without arguments implies StandardError, not equal to no exceptions, similarly to when *[]. -- Nobu Nakada