class Transifex::ParametersFormatError

Public Class Methods

new(parameter, format_expected) click to toggle source
Calls superclass method
# File lib/transifex/errors.rb, line 12
def initialize(parameter, format_expected)
  super("The following parameter: " + parameter.to_s + " must follow the format: " + format_expected)
end