Sha256: 75ea36a82bde38049ab1853cc8944bd937aa9c409402be3e9979065c507b5a0c

Contents?: true

Size: 308 Bytes

Versions: 4

Compression:

Stored size: 308 Bytes

Contents

# frozen_string_literal: true

module Qyu
  module Errors
    # Qyu::Errors::JobNotFound
    class JobNotFound < Base
      attr_reader :original_error
      def initialize(id, original_error)
        super("Job not found with id=#{id}.")
        @original_error = original_error
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
qyu-1.1.0 lib/qyu/errors/job_not_found.rb
qyu-1.0.2 lib/qyu/errors/job_not_found.rb
qyu-1.0.1 lib/qyu/errors/job_not_found.rb
qyu-1.0.0 lib/qyu/errors/job_not_found.rb