Method: ALib::Util#erreq

Defined in:
lib/alib-0.4.0/util.rb

#erreq(a, b) ⇒ Object

determine equality of two exceptions



470
471
472
473
474
475
476
# File 'lib/alib-0.4.0/util.rb', line 470

def erreq a, b
#--{{{
  a.class == b.class and
  a.message == b.message and
  a.backtrace == b.backtrace
#--}}}
end