# File lib/vcard.rb, line 213
  def self.encode_paramtext(value)
    if value =~ Bnf::ALL_SAFECHARS
      value
    else
      raise ::Vcard::Unencodable, "paramtext #{value.inspect}"
    end
  end