class Pluralizr::TooManyWordsError

An ArgumentError meant to inform users when the object passed into the Pluralizr.pluralize method is a String, but contains more than one word. For example, strings like "More than one word".

Public Class Methods

new(msg="argument contains too many words") click to toggle source
Calls superclass method
# File lib/pluralizr/exceptions.rb, line 25
def initialize(msg="argument contains too many words")
  super
end