mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Split long string into multiple shorter ones
This makes the code more readable.
This commit is contained in:
parent
bb4dedbc2c
commit
a720243961
1 changed files with 4 additions and 1 deletions
|
@ -59,7 +59,10 @@ module ActionDispatch
|
||||||
# Note that the regexp does not allow $1 to end with a ':'
|
# Note that the regexp does not allow $1 to end with a ':'
|
||||||
$1.constantize
|
$1.constantize
|
||||||
rescue LoadError, NameError => const_error
|
rescue LoadError, NameError => const_error
|
||||||
raise ActionDispatch::Session::SessionRestoreError, "Session contains objects whose class definition isn't available.\nRemember to require the classes for all objects kept in the session.\n(Original exception: #{const_error.message} [#{const_error.class}])\n"
|
raise ActionDispatch::Session::SessionRestoreError,
|
||||||
|
"Session contains objects whose class definition isn't available.\n" +
|
||||||
|
"Remember to require the classes for all objects kept in the session.\n" +
|
||||||
|
"(Original exception: #{const_error.message} [#{const_error.class}])\n"
|
||||||
end
|
end
|
||||||
retry
|
retry
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue