lib/eventq/eventq_base/exceptions/worker_thread_error.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
80%
module EventQ
  module Exceptions
    # General thread error that signifies a thread about to shutdown.
    class WorkerThreadError < StandardError
      def initialize(message = 'Worker thread error')
        super(message)
      end
    end
  end
end