Coverage for mindsdb / integrations / utilities / handlers / query_utilities / exceptions.py: 0%

3 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-21 00:36 +0000

1 

2class UnsupportedColumnException(Exception): 

3 """ 

4 Exception raised when a column that is not supported is used in a query. 

5 """ 

6 

7 

8class MandatoryColumnException(Exception): 

9 """ 

10 Exception raised when a mandatory column is missing from a query. 

11 """ 

12 

13 

14class ColumnCountMismatchException(Exception): 

15 """ 

16 Exception raised when the number of columns in the query does not match the number of values. 

17 """