Exception: ActionDispatch::ParamsParser::ParseError
- Inherits:
-
StandardError
- Object
- StandardError
- ActionDispatch::ParamsParser::ParseError
- Defined in:
- lib/action_dispatch/middleware/params_parser.rb
Overview
Raised when raw data from the request cannot be parsed by the parser defined for request’s content mime type.
Instance Method Summary collapse
-
#initialize(message = nil, original_exception = nil) ⇒ ParseError
constructor
A new instance of ParseError.
- #original_exception ⇒ Object
Constructor Details
#initialize(message = nil, original_exception = nil) ⇒ ParseError
Returns a new instance of ParseError.
14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/action_dispatch/middleware/params_parser.rb', line 14 def initialize( = nil, original_exception = nil) if ActiveSupport::Deprecation.warn("Passing #message is deprecated and has no effect. " \ "#{self.class} will automatically capture the message " \ "of the original exception.", caller) end if original_exception ActiveSupport::Deprecation.warn("Passing #original_exception is deprecated and has no effect. " \ "Exceptions will automatically capture the original exception.", caller) end super($!.) end |
Instance Method Details
#original_exception ⇒ Object
29 30 31 32 |
# File 'lib/action_dispatch/middleware/params_parser.rb', line 29 def original_exception ActiveSupport::Deprecation.warn("#original_exception is deprecated. Use #cause instead.", caller) cause end |