-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sure ExaError does not raise (#41)
- Loading branch information
Showing
8 changed files
with
259 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"$schema": "https://schemas.exasol.com/error_code_report-1.0.0.json", | ||
"projectName": "exasol-error-reporting", | ||
"projectVersion": "0.4.0", | ||
"errorCodes": [ | ||
{ | ||
"identifier": "E-ERP-1", | ||
"message": "Invalid error code {{code}}.", | ||
"messagePlaceholders": [ | ||
{ | ||
"placeholder": "code", | ||
"description": "Error code which was causing the error." | ||
} | ||
], | ||
"mitigations": [ | ||
"Ensure you follow the standard error code format." | ||
], | ||
"sourceFile": "_error.py" | ||
}, | ||
{ | ||
"identifier": "E-ERP-2", | ||
"message": "Unknown error/exception occurred.", | ||
"messagePlaceholders": [ | ||
{ | ||
"placeholder": "traceback", | ||
"description": "Exception traceback which lead to the generation of this error." | ||
} | ||
], | ||
"description": "An unexpected error occurred during the creation of the error", | ||
"mitigations": [ | ||
"A good starting point would be to investigate the cause of the attached exception.\n\nTrackback:\n {{traceback}}" | ||
], | ||
"sourceFile": "_error.py" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.