Class: Protocol::WebSocket::ProtocolError

Inherits:
Error
  • Object
show all
Defined in:
lib/protocol/websocket/error.rb

Overview

Raised by stream or connection handlers, results in GOAWAY frame which signals termination of the current connection. You cannot recover from this exception, or any exceptions subclassed from it.

Direct Known Subclasses

ClosedError, FrameSizeError

Constant Summary

Constants inherited from Error

Error::GOING_AWAY, Error::INVALID_DATA, Error::NO_ERROR, Error::PROTOCOL_ERROR

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, code = PROTOCOL_ERROR) ⇒ ProtocolError

Returns a new instance of ProtocolError.



31
32
33
34
35
# File 'lib/protocol/websocket/error.rb', line 31

def initialize(message, code = PROTOCOL_ERROR)
	super(message)
	
	@code = code
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



37
38
39
# File 'lib/protocol/websocket/error.rb', line 37

def code
  @code
end