class Derelict::Instance::NonDirectory
The path used for the instance was a file, not a directory
Public Class Methods
new(path)
click to toggle source
Initializes a new instance of this exception for a given path
* path: The requested path of the instance
Calls superclass method
Derelict::Exception::OptionalReason::new
# File lib/derelict/instance/non_directory.rb, line 8 def initialize(path) super "expected directory, found file: #{path}" end