Parent

Object

This file is part of the Arachni-RPC project and may be subject to
redistribution and commercial restrictions. Please see the Arachni-RPC
web site for more information on licensing and terms of use.

# # RPC Exceptions have methods that help identify them based on type. # # So in order to allow evaluations like: # # my_object.rpc_connection_error? # # to be possible on all objects these helper methods need to be available for # all objects. # # By default they'll return false, individual RPC Exceptions will overwrite them to # return true when applicable. # # @author: Tasos "Zapotek" Laskos <tasos.laskos@gmail.com> #

Public Instance Methods

rpc_connection_error?() click to toggle source

@return [Bool] false

# File lib/arachni/rpc/exceptions.rb, line 27
def rpc_connection_error?
    false
end
rpc_exception?() click to toggle source

@return [Bool] false

# File lib/arachni/rpc/exceptions.rb, line 52
def rpc_exception?
    false
end
rpc_invalid_method_error?() click to toggle source

@return [Bool] false

# File lib/arachni/rpc/exceptions.rb, line 42
def rpc_invalid_method_error?
    false
end
rpc_invalid_object_error?() click to toggle source

@return [Bool] false

# File lib/arachni/rpc/exceptions.rb, line 37
def rpc_invalid_object_error?
    false
end
rpc_invalid_token_error?() click to toggle source

@return [Bool] false

# File lib/arachni/rpc/exceptions.rb, line 47
def rpc_invalid_token_error?
    false
end
rpc_remote_exception?() click to toggle source

@return [Bool] false

# File lib/arachni/rpc/exceptions.rb, line 32
def rpc_remote_exception?
    false
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.