aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_job/errors.rb
blob: 4fc3be6878ba75f9cc5ae82e6905fa63fed4252c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module ActiveJob

  class NotImplementedError < ::NotImplementedError #:nodoc:
  end

  class Error < ::StandardError #:nodoc:
    def initialize(message = nil)
      super(message)
    end
  end

end