CORD-1990 Handle exceptions where e.message is another exception

Change-Id: I989ed94074604f32b16ae2d65e1903d217e1e816
(cherry picked from commit 4664dea4806d669d2f107f6fc559b6bb1bde23d4)
diff --git a/xos/synchronizers/new_base/event_loop.py b/xos/synchronizers/new_base/event_loop.py
index 98ce2a3..371ad83 100644
--- a/xos/synchronizers/new_base/event_loop.py
+++ b/xos/synchronizers/new_base/event_loop.py
@@ -234,7 +234,7 @@
         current_code = o.backend_code
 
         if hasattr(e, 'message'):
-            status = e.message
+            status = str(e.message)
         else:
             status = str(e)