class Net::IMAP::StringPrep::ProhibitedCodepoint

StringPrepError raised when string contains a codepoint prohibited by table.

Attributes

table[R]

Public Class Methods

new(table, *args, **kwargs) click to toggle source
# File net-imap-0.4.9/lib/net/imap/stringprep.rb, line 34
def initialize(table, *args, **kwargs)
  @table  = table
  details = (title = Tables::TITLES[table]) ?
    "%s [%s]" % [title, table] : table
  message = "String contains a prohibited codepoint: %s" % [details]
  super(message, *args, **kwargs)
end