lib/nats/rpc/errors.rb in nats-rpc-0.2.0 vs lib/nats/rpc/errors.rb in nats-rpc-0.2.1

- old
+ new

@@ -1,6 +1,16 @@ module NATS module RPC class RemoteError < StandardError + attr_accessor :remote_exception + + def to_s + msg = super + "#{self.remote_exception} (#{msg})" + end + + def message + super + end end end end