ValueError now inherits from CatchableError (#10246)

This commit is contained in:
Oscar Nihlgård
2019-01-10 08:49:57 +01:00
committed by Andreas Rumpf
parent 11050d1104
commit 87232a38e4
2 changed files with 4 additions and 2 deletions

View File

@@ -606,7 +606,7 @@ type
## Raised when assertion is proved wrong.
##
## Usually the result of using the `assert() template <#assert>`_.
ValueError* = object of Defect ## \
ValueError* = object of CatchableError ## \
## Raised for string and object conversion errors.
KeyError* = object of ValueError ## \
## Raised if a key cannot be found in a table.