diff options
author | uvok | 2025-04-18 17:44:34 +0200 |
---|---|---|
committer | uvok | 2025-04-18 17:44:34 +0200 |
commit | 3346c665e47fcda5ef3216d66174eae815fcd3cd (patch) | |
tree | 0b6ccd852e70d3b0142b2632639b764fdfabf1c0 /exceptions.py | |
parent | d12498351659dc47063b42df51d1756bcb2bd4fd (diff) |
Addand use TradeNotFound
Diffstat (limited to 'exceptions.py')
-rw-r--r-- | exceptions.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/exceptions.py b/exceptions.py index ec210a2..dba1e48 100644 --- a/exceptions.py +++ b/exceptions.py @@ -1,2 +1,5 @@ class MismatchedTradeError(Exception): pass + +class TradeNotFound(Exception): + pass |