| 31 | return self.details |
| 32 | |
| 33 | class CloudInternalException(Exception): |
| 34 | def __init__(self, errMsg): |
| 35 | self.errMsg = errMsg |
| 36 | def __str__(self): |
| 37 | return self.errMsg |
| 38 | |
| 39 | def formatExceptionInfo(maxTBlevel=5): |
| 40 | cla, exc, trbk = sys.exc_info() |
no outgoing calls
no test coverage detected