class NoMethodError { """ Exception class that gets thrown when a method wasn't found within a class. """ def method_name { """ @return Name of the method not found (as @String@). Returns the name of the method that was not found as a @String@. """ name to_s from: 1 to: -1 } }