We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error is very generic right now it is not super helpful, can we improve the information display upon error?
The text was updated successfully, but these errors were encountered:
We just need very basic information for 1st release.
Sorry, something went wrong.
@curryrasul I think what this needs to handle are:
pub enum RuntimeError { #[error("Access Error")] AccessError, #[error("Error retrieving context")] ContextRetrievalError, #[error("Empty context stack")] EmptyContextStack, #[error("Index out of bounds")] IndexOutOfBounds, #[error("Item already declared")] ItemAlreadyDeclared, #[error("Item not declared: {0}")] ItemNotDeclared(String), #[error("No context to inherit from")] NoContextToInheritFrom, #[error("Data Item content is not a single value")] NotAValue, #[error("Unsupported data type")] UnsupportedDataType, }
In particular I usually ran into Error: RuntimeError(IndexOutOfBounds) and not able to tell which index access cause this and have to do debugging ...
curryrasul
Successfully merging a pull request may close this issue.
Error is very generic right now it is not super helpful, can we improve the information display upon error?
The text was updated successfully, but these errors were encountered: