class Serverkit::Errors::NonExistentPathError

Public Class Methods

new(path) click to toggle source

@param [#to_s] path

# File lib/serverkit/errors/non_existent_path_error.rb, line 7
def initialize(path)
  @path = path
end

Public Instance Methods

to_s() click to toggle source

@return [String]

# File lib/serverkit/errors/non_existent_path_error.rb, line 12
def to_s
  abort "No such file or directory `#{@path}`"
end