Exception: MIME::Type::InvalidContentType

Inherits:
ArgumentError
  • Object
show all
Defined in:
lib/mime/type.rb

Overview

Reflects a MIME content-type specification that is not correctly formatted (it isn’t type/subtype).

Instance Method Summary collapse

Constructor Details

#initialize(type_string) ⇒ InvalidContentType

:stopdoc:



32
33
34
# File 'lib/mime/type.rb', line 32

def initialize(type_string)
  @type_string = type_string
end

Instance Method Details

#to_sObject



36
37
38
# File 'lib/mime/type.rb', line 36

def to_s
  "Invalid Content-Type #{@type_string.inspect}"
end