class Rafka::MalformedMessageError
Public Class Methods
new(msg)
click to toggle source
# File lib/rafka/errors.rb, line 6 def initialize(msg) @msg = msg end
Public Instance Methods
to_s()
click to toggle source
# File lib/rafka/errors.rb, line 10 def to_s "The message #{@msg.inspect} could not be parsed" end