24 """ |
24 """ |
25 Private method returning a representation of the exception. |
25 Private method returning a representation of the exception. |
26 |
26 |
27 @return string representing the error message |
27 @return string representing the error message |
28 """ |
28 """ |
29 return unicode(self._errorMessage) |
29 return str(self._errorMessage) |
30 |
30 |
31 def __str__(self): |
31 def __str__(self): |
32 """ |
32 """ |
33 Private method returning a string representation of the exception. |
33 Private method returning a string representation of the exception. |
34 |
34 |