class Serverkit::Errors::NonExistentPathError
Public Class Methods
Source
# File lib/serverkit/errors/non_existent_path_error.rb, line 9 def initialize(path) @path = path end
@param [#to_s] path
Public Instance Methods
Source
# File lib/serverkit/errors/non_existent_path_error.rb, line 14 def to_s abort "No such file or directory `#{@path}`" end
@return [String]