Exception: MxxRu::AbstractMethodEx

Inherits:
Ex
  • Object
show all
Defined in:
lib/mxx_ru/ex.rb

Overview

Exception, thrown on execution of ‘pure abstract method’.

Instance Method Summary collapse

Constructor Details

#initialize(method_name) ⇒ AbstractMethodEx

Returns a new instance of AbstractMethodEx.



37
38
39
# File 'lib/mxx_ru/ex.rb', line 37

def initialize( method_name )
  super( "Pure virtual method call: " + method_name )
end