-
Notifications
You must be signed in to change notification settings - Fork 407
Open
Description
I'm currently investigating an issue with some requests being sent to Vroom coming back with Invalid matrix entry. I'd like to improve the error message here to include the matrix entry that caused this issue. The check is being performed here :
if (!mi[j].IsUint()) {
throw InputException("Invalid matrix entry.");
}
matrix[i][j] = mi[j].GetUint();
}
}
And I'd like to change this to :
if (!mi[j].IsUint()) {
throw InputException("Invalid matrix entry {}.", mi[j]);
}
matrix[i][j] = mi[j].GetUint();
}
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels