Exception: OFlow::LinkError

Inherits:
Exception
  • Object
show all
Defined in:
lib/oflow/errors.rb

Overview

An Exception raised when no destination is found.

Instance Method Summary collapse

Constructor Details

#initialize(dest) ⇒ LinkError

Returns a new instance of LinkError.



42
43
44
# File 'lib/oflow/errors.rb', line 42

def initialize(dest)
  super("No destination found for '#{dest}'.")
end