aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/arel/errors.rb
blob: 86fbb80461d32e8d19b8e2ff8781854720e804e8 (plain) (blame)
1
2
3
4
5
6
7
8
# frozen_string_literal: true
module Arel
  class ArelError < StandardError
  end

  class EmptyJoinError < ArelError
  end
end