class Net::IMAP::StringPrep::StringPrepError

string 对于 stringprep profile 无效时引发的 ArgumentError。

属性

profile[R]
string[R]

公共类方法

new(*args, string: nil, profile: nil) 点击切换源代码
调用父类方法
# File net-imap-0.5.4/lib/net/imap/stringprep.rb, line 22
def initialize(*args, string: nil, profile: nil)
  @string  = -string.to_str  unless string.nil?
  @profile = -profile.to_str unless profile.nil?
  super(*args)
end