Exception: Msf::NoEncodersSucceededError

Inherits:
EncodingError
  • Object
show all
Defined in:
lib/msf/core/exception.rb

Overview

This exception is raised when no encoders succeed to encode a buffer.

Instance Method Summary collapse

Constructor Details

#initialize(msg = "No encoders encoded the buffer successfully.") ⇒ NoEncodersSucceededError

Returns a new instance of NoEncodersSucceededError.



137
138
139
# File 'lib/msf/core/exception.rb', line 137

def initialize(msg="No encoders encoded the buffer successfully.")
  super(msg)
end