Lines Matching refs:QAPISchemaError
38 class QAPISchemaError(Exception): class
87 raise QAPISchemaError(self,
104 raise QAPISchemaError(self, 'Stray "%s"' % self.tok)
112 raise QAPISchemaError(self, 'Expected string or "}"')
117 raise QAPISchemaError(self, 'Expected ":"')
124 raise QAPISchemaError(self, 'Expected "," or "}"')
127 raise QAPISchemaError(self, 'Expected string')
135 raise QAPISchemaError(self, 'Expected "{", "[", "]" or string')
142 raise QAPISchemaError(self, 'Expected "," or "]"')
147 raise QAPISchemaError(self, 'Expected "{"')
158 raise QAPISchemaError(self, 'Expected "{", "[" or string')
164 except QAPISchemaError, e: