Source code for libertem.common.exceptions
[docs]
class ExecutorSpecException(Exception):
"""
Raised when there is an error specifying an
Executor or its resources / workers
"""
pass
[docs]
class UDFRunCancelled(Exception):
"""
Raised when the UDF run was cancelled, either when the job was cancelled
using :meth:`AsyncJobExecutor.cancel`, or when the underlying data source
was interrupted.
"""