Exception: ActionController::SessionOverflowError
- Inherits:
-
ActionControllerError
- Object
- StandardError
- ActionControllerError
- ActionController::SessionOverflowError
- Defined in:
- lib/action_controller/base.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
-
#initialize(message = nil) ⇒ SessionOverflowError
constructor
A new instance of SessionOverflowError.
Constructor Details
#initialize(message = nil) ⇒ SessionOverflowError
Returns a new instance of SessionOverflowError.
65 66 67 |
# File 'lib/action_controller/base.rb', line 65 def initialize( = nil) super( || DEFAULT_MESSAGE) end |