Exception: Msf::EncodingError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Msf::EncodingError
- 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.
Direct Known Subclasses
BadGenerateError, BadcharError, NoEncodersSucceededError, NoKeyError
Instance Method Summary collapse
-
#initialize(msg = "An encoding exception occurred.") ⇒ EncodingError
constructor
A new instance of EncodingError.
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 |