Sha256: 35f1f1ccf6b0267a6fa3613eea40798348efe9340456b99e761303e616f03204

Contents?: true

Size: 737 Bytes

Versions: 2

Compression:

Stored size: 737 Bytes

Contents

# frozen_string_literal: true

module Socketry
  # Generic catch all for all Socketry errors
  Error = Class.new(::IOError)

  # 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

2 entries across 2 versions & 1 rubygems

Version Path
socketry-0.2.0 lib/socketry/exceptions.rb
socketry-0.1.0 lib/socketry/exceptions.rb