Sha256: 1151848bfe426206bce0c674869afc1f1af929feec87d55b92deeb0eb8193f9c
Contents?: true
Size: 423 Bytes
Versions: 5
Compression:
Stored size: 423 Bytes
Contents
class Mechanize # =Synopsis # This class contains an error for 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. class ContentTypeError < RuntimeError attr_reader :content_type def initialize(content_type) @content_type = content_type end end end
Version data entries
5 entries across 5 versions & 4 rubygems