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



196
197
198
# File 'lib/macho/exceptions.rb', line 196

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