class Net::IMAP::StringPrep::StringPrepError
ArgumentError raised when string
is invalid for the stringprep profile
.
Attributes
Public Class Methods
Source
# File 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
Calls superclass method