The except clause wasn't binding the exception to a variable, so str(Exception) stored the class name "<class 'Exception'>" instead of the actual error message. Now properly captures `as e` and stores str(e). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>