# File lib/mime/media_type.rb, line 18
    def initialize body, content_type
      AbstractClassError.no_instantiation(self, MediaType)

      @headers = HeaderContainer.new
      @body = body
      self.content_id = unique_id
      self.content_type = content_type
    end