class Rex::Proto::SunRPC::RPCError

Public Class Methods

new(msg = 'RPC operation failed') click to toggle source
Calls superclass method
# File lib/rex/proto/sunrpc/client.rb, line 9
def initialize(msg = 'RPC operation failed')
  super
  @msg = msg
end

Public Instance Methods

to_s() click to toggle source
# File lib/rex/proto/sunrpc/client.rb, line 14
def to_s
  @msg
end