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