Exception: Rex::NotImplementedError

Inherits:
NotImplementedError
  • Object
show all
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

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