class Swiftproj::NoSuchFileError

Public Class Methods

new(path) click to toggle source
# File lib/swiftproj/error.rb, line 31
def initialize(path)
  @path = path
end

Public Instance Methods

message() click to toggle source
# File lib/swiftproj/error.rb, line 35
def message()
  return "No such file: #{@path}"
end