Exception: Webtube::UnexpectedContinuationFrame
- Inherits:
-
ProtocolError
- Object
- StandardError
- ProtocolError
- Webtube::UnexpectedContinuationFrame
- Defined in:
- lib/webtube.rb
Instance Attribute Summary collapse
-
#frame ⇒ Object
readonly
Returns the value of attribute frame.
Instance Method Summary collapse
-
#initialize(message = "a continuation frame arrived but there was no " + "fragmented message pending", frame: nil) ⇒ UnexpectedContinuationFrame
constructor
A new instance of UnexpectedContinuationFrame.
Methods inherited from ProtocolError
Constructor Details
#initialize(message = "a continuation frame arrived but there was no " + "fragmented message pending", frame: nil) ⇒ UnexpectedContinuationFrame
Returns a new instance of UnexpectedContinuationFrame.
962 963 964 965 966 967 968 969 |
# File 'lib/webtube.rb', line 962 def initialize = "a continuation frame arrived but there was no " + "fragmented message pending", frame: nil super @frame = frame return end |
Instance Attribute Details
#frame ⇒ Object (readonly)
Returns the value of attribute frame.
960 961 962 |
# File 'lib/webtube.rb', line 960 def frame @frame end |