class MotherBrain::JobNotFound
Attributes
job_id[R]
Public Class Methods
new(id)
click to toggle source
# File lib/mb/errors.rb, line 246 def initialize(id) @job_id = id end
Public Instance Methods
message()
click to toggle source
# File lib/mb/errors.rb, line 250 def message "No job with ID: '#{job_id}' found" end