class Finalist::OverrideFinalMethodError
Attributes
detect_type[R]
origin_class[R]
override_class[R]
unbound_method[R]
Public Class Methods
new(message, klass, origin, meth, detect_type)
click to toggle source
Calls superclass method
# File lib/finalist.rb, line 28 def initialize(message, klass, origin, meth, detect_type) super(message) @override_class = klass @origin_class = origin @unbound_method = meth @detect_type = detect_type # for debug end