class Vault::Rails::UnknownSerializerError

Public Class Methods

new(key) click to toggle source
Calls superclass method
# File lib/vault/rails/errors.rb, line 9
      def initialize(key)
        super <<-EOH
  Unknown Vault serializer `:#{key}'. Valid serializers are:

      #{SERIALIZERS.keys.sort.map(&:inspect).join(", ")}

  Please refer to the documentation for more examples.
  EOH
      end