Exception: Msf::EncodingError

Inherits:
RuntimeError
  • Object
show all
Includes:
Exception
Defined in:
lib/msf/core/exception.rb

Overview

This exception is raised to indicate that an encoding error of some sort has occurred.

Instance Method Summary collapse

Constructor Details

#initialize(msg = "An encoding exception occurred.") ⇒ EncodingError

Returns a new instance of EncodingError.



84
85
86
# File 'lib/msf/core/exception.rb', line 84

def initialize(msg = "An encoding exception occurred.")
  super(msg)
end