class AbstractMethodError

Public Class Methods

new(msg='Must implement this method.') click to toggle source
Calls superclass method
# File lib/custom_exceptions/abstract_method_exception.rb, line 2
def initialize(msg='Must implement this method.')
  super
end