lib/qyu/errors/unsync_error.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Qyu
  module Errors
    # Qyu::Errors::InvalidQueueName
    class UnsyncError < Base
      def initialize
        super('Not all tasks have been started yet')
      end
    end
  end
end