"""Generic error messages.""" ERROR_CODE_AUTHORIZATION = 'authorization_error' ERROR_CODE_BAD_GRASS_REQUEST = 'bad_grass_request_error' ERROR_CODE_NOT_FOUND = 'not_found' ERROR_MESSAGE_MISSING_GRASS_HEADERS = 'Missing Grass Headers' ERROR_MESSAGE_INCOMPLETE_GRASS_HEADERS = 'Incomplete Grass Headers' ERROR_MESSAGE_INVALID_GRASS_ACCOUNT_TYPE = 'Invalid Grass Account Type' ERROR_MESSAGE_FORBIDDEN_USER = 'User is forbidden' ERROR_INVALID_CURRENCY_CODE = 'Currency was not found by provided code: {}.' ERROR_INVALID_COUNTRY_CODE = 'Country(ies) not found by provided code(s): {}.' ERROR_INVALID_CONTRACT_DATES = ( 'Contract end date should not be less than contract start date.' ) ERROR_INVALID_STORE_ID = 'Store(s) not found by provided id(s): {}.' ERROR_CONTRACT_DISTRIBUTION_TYPE_RECORD_EXIST = ( 'The vendor_contract_distribution_type record exists for ' + 'vendor_contract_id {vendor_contract_id} and ' + 'distribution_type_id {distribution_type_id}.' )