Exception: MachO::UnimplementedError

Inherits:
MachOError
  • Object
show all
Defined in:
lib/macho/exceptions.rb

Overview

Raised whenever unfinished code is called.

Instance Method Summary collapse

Constructor Details

#initialize(thing) ⇒ UnimplementedError

Returns a new instance of UnimplementedError.

Parameters:

  • thing (String)

    the thing that is unimplemented



218
219
220
# File 'lib/macho/exceptions.rb', line 218

def initialize(thing)
  super "Unimplemented: #{thing}"
end