method

handle_no_method_error

ruby latest stable - Class: CMath
handle_no_method_error()
private

No documentation available.

# File lib/cmath.rb, line 426
  def handle_no_method_error # :nodoc:
    if $!.name == :real?
      raise TypeError, "Numeric Number required"
    else
      raise
    end
  end