class Transifex::MissingParametersError

Public Class Methods

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