diff options
Diffstat (limited to 'activerecord/lib/arel/errors.rb')
-rw-r--r-- | activerecord/lib/arel/errors.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/activerecord/lib/arel/errors.rb b/activerecord/lib/arel/errors.rb new file mode 100644 index 0000000000..2f8d5e3c02 --- /dev/null +++ b/activerecord/lib/arel/errors.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +module Arel # :nodoc: all + class ArelError < StandardError + end + + class EmptyJoinError < ArelError + end +end |