aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/arel/errors.rb
blob: 2f8d5e3c02030046214a9a8bc3fe42d611acadde (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Arel # :nodoc: all
  class ArelError < StandardError
  end

  class EmptyJoinError < ArelError
  end
end