class Qyu::Errors::JobNotFound

Qyu::Errors::JobNotFound

Attributes

original_error[R]

Public Class Methods

new(id, original_error) click to toggle source
Calls superclass method
# File lib/qyu/errors/job_not_found.rb, line 8
def initialize(id, original_error)
  super("Job not found with id=#{id}.")
  @original_error = original_error
end