feat: more pythonic error parent class #48
Reference in New Issue
Block a user
Delete Branch "feature/explicit-exception-type"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This pull request updates the exception hierarchy for
InternalAssertionExceptionto improve how internal assertion errors are handled and tested.Exception hierarchy update:
InternalAssertionExceptionfromAssertionErrortoRuntimeErrorinjambo/exceptions/internal_assertion_exception.py.Test adjustments:
tests/exceptions/test_internal_assertion_exception.pyto check thatInternalAssertionExceptionis a subclass ofRuntimeErrorinstead ofAssertionError.