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

module Arel
  class ArelError < StandardError
  end

  class EmptyJoinError < ArelError
  end
end