Exception: Rex::Post::Meterpreter::RequestError
- Inherits:
-
ArgumentError
- Object
- ArgumentError
- ArgumentError
- Rex::Post::Meterpreter::RequestError
- Defined in:
- lib/rex/post/meterpreter/packet_dispatcher.rb
Overview
Exception thrown when a request fails.
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
The error result that occurred, typically a windows error code.
-
#method ⇒ Object
readonly
The method that failed.
-
#result ⇒ Object
readonly
The error result that occurred, typically a windows error message.
Instance Method Summary collapse
-
#initialize(method, einfo, ecode = nil) ⇒ RequestError
constructor
A new instance of RequestError.
- #to_s ⇒ Object
Constructor Details
#initialize(method, einfo, ecode = nil) ⇒ RequestError
Returns a new instance of RequestError.
17 18 19 20 21 |
# File 'lib/rex/post/meterpreter/packet_dispatcher.rb', line 17 def initialize(method, einfo, ecode=nil) @method = method @result = einfo @code = ecode || einfo end |
Instance Attribute Details
#code ⇒ Object (readonly)
The error result that occurred, typically a windows error code.
34 35 36 |
# File 'lib/rex/post/meterpreter/packet_dispatcher.rb', line 34 def code @code end |
#method ⇒ Object (readonly)
The method that failed.
28 29 30 |
# File 'lib/rex/post/meterpreter/packet_dispatcher.rb', line 28 def method @method end |
#result ⇒ Object (readonly)
The error result that occurred, typically a windows error message.
31 32 33 |
# File 'lib/rex/post/meterpreter/packet_dispatcher.rb', line 31 def result @result end |
Instance Method Details
#to_s ⇒ Object
23 24 25 |
# File 'lib/rex/post/meterpreter/packet_dispatcher.rb', line 23 def to_s "#{@method}: Operation failed: #{@result}" end |