| 58 | |
| 59 | |
| 60 | class NotConnection(WebDavException): |
| 61 | def __init__(self, hostname): |
| 62 | self.hostname = hostname |
| 63 | |
| 64 | def __str__(self): |
| 65 | return "Not connection with {hostname}".format(hostname=self.hostname) |
| 66 | |
| 67 | |
| 68 | class NotEnoughSpace(WebDavException): |
no outgoing calls
no test coverage detected