class Ox::InvalidPath

An Exception raised if a path is not valid.

Public Class Methods

new(path) click to toggle source

Create a new instance with the path specified.

Calls superclass method
# File lib/ox/error.rb, line 23
def initialize(path)
  super("#{path.join('/')} is not a valid location.")
end