Home
last modified time | relevance | path

Searched refs:InputError (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-latest/tools/esptool_py/espefuse/efuse/
Dcsv_table_parser.py22 raise InputError(f"unknown variable '{m.group(1)}'")
31 except InputError as err:
32 raise InputError(f"Error at line {line_no + 1}: {err}")
54 raise InputError(
102 raise InputError("Field names must be unique")
120 raise InputError(f"{name} is not found")
139 raise InputError(
203 raise InputError("Field bit_count can't be empty")
225 raise InputError(f"Invalid field value {v}")
229 raise InputError("Field 'efuse_block' can't be left empty.")
[all …]
/hal_espressif-latest/components/mbedtls/esp_crt_bundle/
Dgen_crt_bundle.py67 raise InputError('No valid x509 certificates found in %s' % crts_path)
87 raise InputError('Invalid certificate')
111 raise InputError('No certificate found')
170 class InputError(RuntimeError): class
172 super(InputError, self).__init__(e)
201 raise InputError('Invalid --input=%s, is neither file nor folder' % args.input)
214 except InputError as e:
/hal_espressif-latest/components/efuse/
Defuse_table_gen.py62 raise InputError("unknown variable '%s'" % (m.group(1)))
71 except InputError as e:
72 raise InputError('Error at line %d: %s' % (line_no + 1, e))
93 raise InputError('Error at line %d: %s missing field name' % (line_no + 1, i))
134 raise InputError('Field names must be unique')
148 raise InputError('%s is not found' % name)
167 raise InputError('Field at %s, %s, %s, %s %s %s, %s, %s, %s' %
373 raise InputError("Field bit_count can't be empty")
393 raise InputError('Invalid field value %s' % v)
397 raise InputError("Field 'efuse_block' can't be left empty.")
[all …]