class Assembla::Error::UnknownMedia
Public Class Methods
new(file)
click to toggle source
Calls superclass method
Assembla::Error::ClientError::new
# File lib/assembla_api/error/unknown_media.rb, line 7 def initialize(file) super( generate_message( :problem => "Unknown content type for: '#{file}' provided for this request.", :summary => "Assembla gem infers the content type of the resource by calling the mime-types gem type inference.", :resolution => "Please install mime-types gem to infer the resource content type." ) ) end