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().- Parameters:
string (
str)- Return type:
None
- exception toil.jobStores.abstractJobStore.ConcurrentFileModificationException(jobStoreFileID)[source]
Indicates that the file was attempted to be modified by multiple processes at once.
- 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]
- exception toil.jobStores.abstractJobStore.NoSuchJobException(jobStoreID)[source]
Indicates that the specified job does not exist.
- exception toil.jobStores.abstractJobStore.NoSuchJobStoreException(locator, prefix)[source]
Indicates that the specified job store does not exist.