class Chatkit::UnexpectedParameterError

Attributes

message[RW]

Public Class Methods

new(message) click to toggle source
# File lib/chatkit/unexpected_parameter_error.rb, line 7
def initialize(message)
  @message = message
end

Public Instance Methods

to_s() click to toggle source
# File lib/chatkit/unexpected_parameter_error.rb, line 11
def to_s
  "Chatkit::UnexpectedParameterError - #{@message}"
end