class OFlow::LinkError

An Exception raised when no destination is found.

Public Class Methods

new(dest) click to toggle source
Calls superclass method
# File lib/oflow/errors.rb, line 42
def initialize(dest)
  super("No destination found for '#{dest}'.")
end