| 33 | |
| 34 | |
| 35 | class RemoteResourceNotFound(NotFound): |
| 36 | def __init__(self, path): |
| 37 | self.path = path |
| 38 | |
| 39 | def __str__(self): |
| 40 | return "Remote resource: {path} not found".format(path=self.path) |
| 41 | |
| 42 | |
| 43 | class RemoteParentNotFound(NotFound): |
no outgoing calls
no test coverage detected