Exception: Fudge::Exceptions::TaskGroupNotFound
- Defined in:
- lib/fudge/exceptions.rb
Overview
Unknown task group error class
Instance Method Summary collapse
-
#initialize(name) ⇒ TaskGroupNotFound
constructor
A new instance of TaskGroupNotFound.
-
#message ⇒ Object
error message.
Constructor Details
#initialize(name) ⇒ TaskGroupNotFound
Returns a new instance of TaskGroupNotFound.
29 30 31 |
# File 'lib/fudge/exceptions.rb', line 29 def initialize(name) @name = name end |
Instance Method Details
#message ⇒ Object
error message
34 35 36 |
# File 'lib/fudge/exceptions.rb', line 34 def "No task group found with name '#{@name}'" end |