Sha256: 66feadf3c283e2ff65d251b8d555eb897efd3f284ccf62e76353006bb5cc8032
Contents?: true
Size: 835 Bytes
Versions: 1
Compression:
Stored size: 835 Bytes
Contents
# frozen_string_literal: true module Socketry # Generic catch all for all Socketry errors Error = Class.new(StandardError) # Failed to connect to a remote host ConnectionRefusedError = Class.new(Socketry::Error) # Invalid address AddressError = Class.new(Socketry::Error) # Timeouts performing an I/O operation TimeoutError = Class.new(Socketry::Error) # Cannot perform operation in current state StateError = Class.new(Socketry::Error) # Internal consistency error within the library InternalError = Class.new(Socketry::Error) module Resolver # DNS resolution errors Error = Class.new(Socketry::AddressError) end module SSL # Errors related to SSL Error = Class.new(Socketry::Error) # Hostname verification error HostnameError = Class.new(Socketry::SSL::Error) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
socketry-0.3.0 | lib/socketry/exceptions.rb |