class Transifex::MissingParametersError

Public Class Methods

new(*missing_attributes) click to toggle source
Calls superclass method
# File lib/transifex/errors.rb, line 6
def initialize(*missing_attributes)
  super("The following attributes are missing: " + missing_attributes.join(", "))
end