Include the input in the message when raising InvalidAddressError

[Feature #5987]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2018-08-09 08:40:54 +00:00
Родитель 14ad644d84
Коммит 236e2993ef
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -594,6 +594,8 @@ class IPAddr
else
@mask_addr = (@family == Socket::AF_INET) ? IN4MASK : IN6MASK
end
rescue InvalidAddressError => e
raise e.class, "#{e.message}: #{addr}"
end
def coerce_other(other)