| 41 | |
| 42 | |
| 43 | class RemoteParentNotFound(NotFound): |
| 44 | def __init__(self, path): |
| 45 | self.path = path |
| 46 | |
| 47 | def __str__(self): |
| 48 | return "Remote parent for: {path} not found".format(path=self.path) |
| 49 | |
| 50 | |
| 51 | class MethodNotSupported(WebDavException): |
no outgoing calls
no test coverage detected