| 25 | |
| 26 | |
| 27 | class LocalResourceNotFound(NotFound): |
| 28 | def __init__(self, path): |
| 29 | self.path = path |
| 30 | |
| 31 | def __str__(self): |
| 32 | return "Local file: {path} not found".format(path=self.path) |
| 33 | |
| 34 | |
| 35 | class RemoteResourceNotFound(NotFound): |
no outgoing calls
no test coverage detected