class MetasploitPayloads::NotReadableError

Error raised when the user does not have read permissions for a Metasploit Payloads file

Attributes

path[R]

Public Class Methods

new(path = '') click to toggle source
Calls superclass method
# File lib/metasploit-payloads/error.rb, line 21
def initialize(path = '')
  @path = path
  super("Meterpreter path #{@path} is not readable. Check if you have read access and try again.")
end