aboutsummaryrefslogtreecommitdiffstats
path: root/lib/plum/error.rb
blob: a1520a0bb2bfc2db3a79158a4db0c1c43c9bdc47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
module Plum
  ERROR_CODES = {
    no_error:            0x00,
    protocol_error:      0x01,
    internal_error:      0x02,
    flow_control_error:  0x03,
    settings_timeout:    0x04,
    stream_closed:       0x05,
    frame_size_error:    0x06,
    refused_stream:      0x07,
    cancel:              0x08,
    compression_error:   0x09,
    connect_error:       0x0a,
    enhance_your_calm:   0x0b,
    inadequate_security: 0x0c,
    http_1_1_required:   0x0d,
  }

  class Error < StandardError; end
  class HPACKError < Error; end
  class HTTPError < Error
    attr_reader :http2_error_type
    def initialize(type, message = nil)
      @http2_error_type = type
      super(message)
    end

    def http2_error_code
      ERROR_CODES[@http2_error_type]
    end
  end
  class ConnectionError < HTTPError; end
  class StreamError < HTTPError; end
end