class CodeKeeper::TargetFileNotFoundError

Raised when a file does not exist

Public Class Methods

new(path) click to toggle source
Calls superclass method
# File lib/code_keeper.rb, line 28
def initialize(path)
  msg = "The target file does not exist. Check the file path: #{path}."
  super(msg)
end