chainqueue/chainqueue/error.py
2021-04-02 11:51:00 +02:00

15 lines
334 B
Python

class ChainQueueException(Exception):
pass
class NotLocalTxError(ChainQueueException):
"""Exception raised when trying to access a tx not originated from a local task
"""
pass
class TxStateChangeError(ChainQueueException):
"""Raised when an invalid state change of a queued transaction occurs
"""
pass