class SimpleRPC::RPCError

Superclass of all RPC-related exceptions

Attributes

cause[R]

Public Class Methods

new(exception) click to toggle source
Calls superclass method
# File lib/simplerpc/exceptions.rb, line 12
def initialize(exception)
  super("#{exception.class}: #{exception}")
  set_backtrace(exception.backtrace)
end