Exception: Ox::InvalidPath
Overview
An Exception raised if a path is not valid.
Instance Method Summary collapse
-
#initialize(path) ⇒ InvalidPath
constructor
Create a new instance with the
path
specified.
Constructor Details
#initialize(path) ⇒ InvalidPath
Create a new instance with the path
specified.
19 20 21 |
# File 'lib/ox/error.rb', line 19 def initialize(path) super("#{path.join('/')} is not a valid location.") end |