We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a18a2d commit c2d53bfCopy full SHA for c2d53bf
snakemake_interface_storage_plugins/exceptions.py
@@ -1,8 +1,10 @@
1
from pathlib import Path
2
from typing import Optional
3
4
+from snakemake_interface_common.exceptions import WorkflowError
5
-class FileOrDirectoryNotFoundError(Exception):
6
+
7
+class FileOrDirectoryNotFoundError(WorkflowError):
8
def __init__(self, local_path: Path, query: Optional[str]):
9
self.query: Optional[str] = query
10
self.local_path: Path = local_path
0 commit comments