aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/arel/errors.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/arel/errors.rb')
-rw-r--r--activerecord/lib/arel/errors.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activerecord/lib/arel/errors.rb b/activerecord/lib/arel/errors.rb
new file mode 100644
index 0000000000..86fbb80461
--- /dev/null
+++ b/activerecord/lib/arel/errors.rb
@@ -0,0 +1,8 @@
+# frozen_string_literal: true
+module Arel
+ class ArelError < StandardError
+ end
+
+ class EmptyJoinError < ArelError
+ end
+end