Searched refs:FileFormatError (Results 1 – 7 of 7) sorted by relevance
25 class FileFormatError(Exception): class66 raise FileFormatError('Invalid file format.')80 raise FileFormatError('Corrupt file.')115 raise FileFormatError('Corrupt file.')
81 raise parser.FileFormatError('Empty file.')90 raise parser.FileFormatError('Invalid magic.')
108 except parser.FileFormatError:116 raise parser.FileFormatError(
104 except parser.FileFormatError:106 raise parser.FileFormatError("Invalid file.")
33 from vts.utils.python.coverage.parser import FileFormatError176 except FileFormatError:445 except FileFormatError:565 except FileFormatError:589 except FileFormatError:
173 self.assertRaises(parser.FileFormatError, p.ReadInt)212 self.assertRaises(parser.FileFormatError, p.ReadString)
48 with self.assertRaises(parser.FileFormatError) as context: