class

NameError

v1_9_2_180 - Show latest stable - Superclass: StandardError

Raised when a given name is invalid or undefined.

puts foo

raises the exception:

NameError: undefined local variable or method `foo' for main:Object

Since constant names must start with a capital:

Fixnum.const_set :answer, 42

raises the exception:

NameError: wrong constant name answer

Files

  • error.c

Nested classes and modules