Exception: Mechanize::ContentTypeError

Inherits:
Error
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(content_type) ⇒ ContentTypeError

Returns a new instance of ContentTypeError.



9
10
11
# File 'lib/mechanize/content_type_error.rb', line 9

def initialize(content_type)
  @content_type = content_type
end

Instance Attribute Details

#content_typeObject (readonly)

Returns the value of attribute content_type.



7
8
9
# File 'lib/mechanize/content_type_error.rb', line 7

def content_type
  @content_type
end