Searched refs:SchemaError (Results 1 – 3 of 3) sorted by relevance
5 static PyObject *SchemaError; variable284 PyErr_SetString (SchemaError, err.msg); in ucl_validate()307 SchemaError = PyErr_NewException("ucl.SchemaError", NULL, NULL); in init_macros()308 Py_INCREF(SchemaError); in init_macros()309 PyModule_AddObject(mod, "SchemaError", SchemaError); in init_macros()
15 class SchemaError(Exception): ...
21 with self.assertRaises(ucl.SchemaError):