Exception: MIME::Type::InvalidContentType
- Inherits:
-
ArgumentError
- Object
- ArgumentError
- MIME::Type::InvalidContentType
- 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
-
#initialize(type_string) ⇒ InvalidContentType
constructor
:stopdoc:.
- #to_s ⇒ Object
Constructor Details
#initialize(type_string) ⇒ InvalidContentType
:stopdoc:
72 73 74 |
# File 'lib/mime/type.rb', line 72 def initialize(type_string) @type_string = type_string end |
Instance Method Details
#to_s ⇒ Object
76 77 78 |
# File 'lib/mime/type.rb', line 76 def to_s "Invalid Content-Type #{@type_string.inspect}" end |