Exceptions API¶
Toil specific exceptions.
- exception toil.job.JobException(message)[source]
General job exception.
- Parameters:
message (
str
)- Return type:
None
- exception toil.job.JobGraphDeadlockException(string)[source]
An exception raised in the event that a workflow contains an unresolvable dependency, such as a cycle. See
toil.job.Job.checkJobGraphForDeadlocks()
.- __init__(string)[source]
- exception toil.jobStores.abstractJobStore.ConcurrentFileModificationException(jobStoreFileID)[source]
Indicates that the file was attempted to be modified by multiple processes at once.
- Parameters:
jobStoreFileID (
FileID
)
- exception toil.jobStores.abstractJobStore.JobStoreExistsException(locator, prefix)[source]
Indicates that the specified job store already exists.
- exception toil.jobStores.abstractJobStore.NoSuchFileException(jobStoreFileID, customName=None, *extra)[source]
Indicates that the specified file does not exist.
- __init__(jobStoreFileID, customName=None, *extra)[source]