| 20 | * Package wide error throwing class |
| 21 | */ |
| 22 | class ErrorThrower { |
| 23 | |
| 24 | throwColumnNamesLengthError = (ndframe: NDframe, columns: Array<string>): void => { |
| 25 | const msg = `ParamError: Column names length mismatch. You provided a column of length ${columns.length} but Ndframe columns has length of ${ndframe.shape[1]}` |
nothing calls this directly
no outgoing calls
no test coverage detected