method
marshal_load
v7.1.3.2 -
Show latest stable
- Class:
ActiveSupport::Cache::SerializerWithFallback
marshal_load(payload)private
No documentation available.
# File activesupport/lib/active_support/cache/serializer_with_fallback.rb, line 39
def marshal_load(payload)
Marshal.load(payload)
rescue ArgumentError => error
raise Cache::DeserializationError, error.message
end