Exception: Rex::Post::Meterpreter::ExtensionLoadError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Rex::Post::Meterpreter::ExtensionLoadError
- Defined in:
- lib/rex/post/meterpreter/extension.rb
Overview
An error that is raised when a particular Meterpreter extension can not be loaded for any reason.
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
The name of the extension that could not be loaded.
Instance Method Summary collapse
-
#initialize(name:) ⇒ ExtensionLoadError
constructor
A new instance of ExtensionLoadError.
Constructor Details
#initialize(name:) ⇒ ExtensionLoadError
Returns a new instance of ExtensionLoadError.
16 17 18 19 |
# File 'lib/rex/post/meterpreter/extension.rb', line 16 def initialize(name:) @name = name super end |
Instance Attribute Details
#name ⇒ String (readonly)
The name of the extension that could not be loaded.
12 13 14 |
# File 'lib/rex/post/meterpreter/extension.rb', line 12 def name @name end |