Exception: Rex::NotImplementedError
- Inherits:
-
NotImplementedError
- Object
- NotImplementedError
- Rex::NotImplementedError
- Includes:
- Exception
- Defined in:
- lib/rex/exceptions.rb
Overview
This exception is raised when a method is called or a feature is used that is not implemented.
Instance Method Summary collapse
-
#initialize(msg = "The requested method is not implemented.") ⇒ NotImplementedError
constructor
A new instance of NotImplementedError.
Constructor Details
#initialize(msg = "The requested method is not implemented.") ⇒ NotImplementedError
Returns a new instance of NotImplementedError.
35 36 37 |
# File 'lib/rex/exceptions.rb', line 35 def initialize(msg = "The requested method is not implemented.") super(msg) end |