Lines Matching refs:InputError
62 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.")
400 raise InputError("Field 'efuse_block' should be one of EFUSE_BLK0..EFUSE_BLK3")
405 raise InputError("Field 'efuse_block' should be one of EFUSE_BLK0..EFUSE_BLK10")
516 raise InputError('Unsupported block length = %d' % (max_blk_len))
540 class InputError(RuntimeError): class
542 super(InputError, self).__init__(e)
545 class ValidationError(InputError):
553 except InputError as e: