Sha256: db3c6e78dba625239df35c49e8dbd08233209cfb9bc773a4650f2a5abe7ea7c1

Contents?: true

Size: 1.55 KB

Versions: 14

Compression:

Stored size: 1.55 KB

Contents

module Blather
  # Main error class
  # This starts the error hierarchy
  #
  # @handler :error
  class BlatherError < StandardError
    class_inheritable_array :handler_hierarchy
    self.handler_hierarchy ||= []

    # @private
    @@handler_list = []

    # Register the class's handler
    #
    # @param [Symbol] handler the handler name
    def self.register(handler)
      @@handler_list << handler
      self.handler_hierarchy.unshift handler
    end

    # The list of registered handlers
    #
    # @return [Array<Symbol>] a list of currently registered handlers
    def self.handler_list
      @@handler_list
    end

    register :error

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

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

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

    def initialize(node)
      @node = node
    end
  end  # UnknownResponse

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

    def initialize(msg)
      @message = msg.to_s
    end
  end  # ParseError

end  # Blather

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
blather-0.5.3 lib/blather/errors.rb
blather-0.5.2 lib/blather/errors.rb
blather-0.5.0 lib/blather/errors.rb
blather-0.4.16 lib/blather/errors.rb
blather-0.4.15 lib/blather/errors.rb
shingara-blather-0.4.14 lib/blather/errors.rb
blather-0.4.14 lib/blather/errors.rb
blather-0.4.13 lib/blather/errors.rb
blather-0.4.12 lib/blather/errors.rb
blather-0.4.11 lib/blather/errors.rb
blather-0.4.10 lib/blather/errors.rb
shingara-blather-0.4.9 lib/blather/errors.rb
shingara-blather-0.4.8 lib/blather/errors.rb
blather-0.4.8 lib/blather/errors.rb