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 is not type
/subtype
).
Instance Method Summary collapse
-
#initialize(type_string) ⇒ InvalidContentType
constructor
:stopdoc:.
- #to_s ⇒ Object
Constructor Details
#initialize(type_string) ⇒ InvalidContentType
:stopdoc:
74 75 76 |
# File 'lib/mime/type.rb', line 74 def initialize(type_string) @type_string = type_string end |
Instance Method Details
#to_s ⇒ Object
78 79 80 |
# File 'lib/mime/type.rb', line 78 def to_s "Invalid Content-Type #{@type_string.inspect}" end |