Exception: ActionController::SessionOverflowError

Inherits:
ActionControllerError show all
Defined in:
actionpack/lib/action_controller/metal/exceptions.rb

Overview

:nodoc:

Constant Summary collapse

DEFAULT_MESSAGE =
'Your session data is larger than the data column in which it is to be stored. You must increase the size of your data column if you intend to store large data.'

Instance Method Summary collapse

Constructor Details

#initialize(message = nil) ⇒ SessionOverflowError

Returns a new instance of SessionOverflowError.



49
50
51
# File 'actionpack/lib/action_controller/metal/exceptions.rb', line 49

def initialize(message = nil)
  super(message || DEFAULT_MESSAGE)
end