class Stomp::Error::ServerFrameNameError
ServerFrameNameError is raised if:
-
Invalid frame is received from the Stomp server.
Public Class Methods
new(bf)
click to toggle source
# File lib/stomp/errors.rb, line 189 def initialize(bf) @bf = bf end
Public Instance Methods
message()
click to toggle source
# File lib/stomp/errors.rb, line 192 def message "Connected, server frame name error: #{@bf.inspect}" end