(self, errno)
| 512 | # access to error code via @errno of CsError |
| 513 | class CsError(Exception): |
| 514 | def __init__(self, errno): |
| 515 | self.errno = errno |
| 516 | |
| 517 | if _python2: |
| 518 | def __str__(self): |
nothing calls this directly
no outgoing calls
no test coverage detected