lib/ethon/errors/multi_add.rb
module Ethon module Errors # Raises when multi_add_handle failed. class MultiAdd < EthonError def initialize(code, easy) super("An error occured adding the easy handle: #{easy} to the multi: #{code}") # "an error occured getting the fdset: #{code}: #{Curl.multi_strerror(code)}" end end end end