class RailwayIpc::Responder::ResponseTypeError

Public Class Methods

new(response_class) click to toggle source
Calls superclass method
# File lib/railway_ipc/responder.rb, line 26
def initialize(response_class)
  message = "`respond` block should return a Google Protobuf message that the corresponding client can handle, instead returned #{response_class}"
  super(message)
end