class NATS::RPC::RemoteError

Attributes

remote_exception[RW]

Public Instance Methods

message() click to toggle source
Calls superclass method
# File lib/nats/rpc/errors.rb, line 11
def message
  super
end
to_s() click to toggle source
Calls superclass method
# File lib/nats/rpc/errors.rb, line 6
def to_s
  msg = super
  "#{self.remote_exception} (#{msg})"
end