Sha256: 2f89ea8fa0fa309a80647cad98737339cdf95095e8d74c4449f77b2c1e3e41c9

Contents?: true

Size: 1.11 KB

Versions: 8

Compression:

Stored size: 1.11 KB

Contents

module Blather
  # Main error class
  class BlatherError < StandardError
    class_inheritable_array :handler_heirarchy

    self.handler_heirarchy ||= []
    self.handler_heirarchy << :error

    def self.register(handler)
      self.handler_heirarchy.unshift handler
    end

    # HACK!! until I can refactor the entire Error object model
    def id
      nil
    end
  end

  ##
  # Used in cases where a stanza only allows specific values for its attributes
  # and an invalid value is attempted.
  class ArgumentError < BlatherError
    register :argument_error
  end

  ##
  # The stream handler received a response it didn't know how to handle
  class UnknownResponse < BlatherError
    register :unknown_response_error
    attr_reader :node

    def initialize(node)
      @node = node
    end
  end

  ##
  # TLS negotiations broke down
  class TLSFailure < BlatherError
    register :tls_failure
  end

  ##
  # Something bad happened while parsing the incoming stream
  class ParseError < BlatherError
    register :parse_error
    attr_reader :message

    def initialize(message)
      @message = message
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
sprsquish-blather-0.3.0 lib/blather/errors.rb
sprsquish-blather-0.3.1 lib/blather/errors.rb
sprsquish-blather-0.3.2 lib/blather/errors.rb
sprsquish-blather-0.3.3 lib/blather/errors.rb
blather-0.3.1 lib/blather/errors.rb
blather-0.3.0 lib/blather/errors.rb
blather-0.3.3 lib/blather/errors.rb
blather-0.3.2 lib/blather/errors.rb