Exception: Kdeploy::FileNotFoundError

Inherits:
Error
  • Object
show all
Defined in:
lib/kdeploy/errors.rb

Overview

Raised when file operation fails

Instance Method Summary collapse

Constructor Details

#initialize(file_path) ⇒ FileNotFoundError

Returns a new instance of FileNotFoundError.



60
61
62
# File 'lib/kdeploy/errors.rb', line 60

def initialize(file_path)
  super("File not found: #{file_path}")
end