Merge pull request #4500 from tchak/active-storage-file-not-found

Implement ActiveStorage::FileNotFoundError
This commit is contained in:
Paul Chavard 2019-11-07 17:29:24 +01:00 committed by GitHub
commit 8d8be8d033
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,4 @@
module ActiveStorage
# activestorage-openstack uses ActiveStorage::FileNotFoundError which only exists in rails 6
class FileNotFoundError < StandardError; end
end