Exception: Kdeploy::TaskNotFoundError

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

Overview

Raised when a task is not found

Instance Method Summary collapse

Constructor Details

#initialize(task_name) ⇒ TaskNotFoundError

Returns a new instance of TaskNotFoundError.



9
10
11
# File 'lib/kdeploy/errors.rb', line 9

def initialize(task_name)
  super("Task not found: #{task_name}")
end