Exception: Mechanize::ContentTypeError
- Defined in:
- lib/mechanize/content_type_error.rb
Overview
This error is raised when a pluggable parser tries to parse a content type that it does not know how to handle. For example if Mechanize::Page were to try to parse a PDF, a ContentTypeError would be thrown.
Instance Attribute Summary collapse
-
#content_type ⇒ Object
readonly
Returns the value of attribute content_type.
Instance Method Summary collapse
-
#initialize(content_type) ⇒ ContentTypeError
constructor
A new instance of ContentTypeError.
Constructor Details
#initialize(content_type) ⇒ ContentTypeError
Returns a new instance of ContentTypeError.
10 11 12 |
# File 'lib/mechanize/content_type_error.rb', line 10 def initialize(content_type) @content_type = content_type end |
Instance Attribute Details
#content_type ⇒ Object (readonly)
Returns the value of attribute content_type.
8 9 10 |
# File 'lib/mechanize/content_type_error.rb', line 8 def content_type @content_type end |