Exception: ActionController::SessionOverflowError
- Inherits:
-
ActionControllerError
- Object
- StandardError
- ActionControllerError
- ActionController::SessionOverflowError
- Defined in:
- actionpack/lib/action_controller/metal/exceptions.rb
Overview
:nodoc:
Constant Summary
- 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)
-
- (SessionOverflowError) initialize(message = nil)
constructor
A new instance of SessionOverflowError.
Constructor Details
- (SessionOverflowError) initialize(message = nil)
A new instance of SessionOverflowError
39 40 41 |
# File 'actionpack/lib/action_controller/metal/exceptions.rb', line 39 def initialize( = nil) super( || DEFAULT_MESSAGE) end |