class Motion::InvalidSerializedStateError

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/motion/errors.rb, line 91
def initialize
  super(
    "The serialized state of your component is not valid.\n" \
    "\n" \
    "Hint: Ensure that you have not tampered with the contents of data " \
    "attributes added by Motion in the DOM or changed the value of " \
    "`Motion.config.secret`."
  )
end