class Truther::NeitherTrueNorFalseError

Public Class Methods

new(str) click to toggle source
Calls superclass method
# File lib/truther.rb, line 8
def initialize(str)
  super("'#{str}' is not recognized as truthy or falsy.")
end