Skip to Content Skip to Search
v7.1.0
class ActiveSupport::EncryptedFile::MissingContentError < RuntimeError
Methods
N

Public class methods

new(content_path)

Permalink
Source code GitHub
# File activesupport/lib/active_support/encrypted_file.rb, line 10
def initialize(content_path)
  super "Missing encrypted content file in #{content_path}."
end
Definition files