diff options
Diffstat (limited to 'actionpack/lib/abstract_controller/error.rb')
-rw-r--r-- | actionpack/lib/abstract_controller/error.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/lib/abstract_controller/error.rb b/actionpack/lib/abstract_controller/error.rb new file mode 100644 index 0000000000..89a54f072e --- /dev/null +++ b/actionpack/lib/abstract_controller/error.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +module AbstractController + class Error < StandardError #:nodoc: + end +end |