(cls, value, full_schema, path, expected_type)
| 171 | |
| 172 | @classmethod |
| 173 | def check(cls, value, full_schema, path, expected_type): |
| 174 | if not isinstance(value, expected_type): |
| 175 | raise SchemaTypeValidationError(value, full_schema, path, expected_type) |
| 176 | |
| 177 | |
| 178 | class SchemaLengthValidationError(InvalidCallbackReturnValue): |
no test coverage detected