# File lib/facets/more/typecast.rb, line 175
    def cast_from(object)
      return super
    rescue TypeCastException
      return object.to_s if object.respond_to? :to_s
      raise
    end