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


67
68
69
# File 'actionpack/lib/action_controller/metal/exceptions.rb', line 67

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