class MxxRu::AbstractMethodEx

Exception, thrown on execution of 'pure abstract method'.

Public Class Methods

new( method_name ) click to toggle source
Calls superclass method
# File lib/mxx_ru/ex.rb, line 37
def initialize( method_name )
  super( "Pure virtual method call: " + method_name )
end