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

Public class methods

new()

Permalink
Source code GitHub
# File activesupport/lib/active_support/encrypted_file.rb, line 24
def initialize
  super "Encryption key must be exactly #{EncryptedFile.expected_key_length} characters."
end
Definition files