Files
nutshell/cashu/core/errors.py
lollerfirst ea96fab9e3 [FIX] Specs conformant error codes (#693)
* error codes must follow spec

* make format
2025-01-21 17:36:22 -06:00

133 lines
3.4 KiB
Python

from typing import Optional
class CashuError(Exception):
code: int
detail: str
def __init__(self, detail, code=0):
super().__init__(detail)
self.code = code
self.detail = detail
class NotAllowedError(CashuError):
detail = "not allowed"
code = 10000
def __init__(self, detail: Optional[str] = None, code: Optional[int] = None):
super().__init__(detail or self.detail, code=code or self.code)
class OutputsAlreadySignedError(CashuError):
detail = "outputs have already been signed before."
code = 10002
def __init__(self, detail: Optional[str] = None, code: Optional[int] = None):
super().__init__(detail or self.detail, code=code or self.code)
class InvalidProofsError(CashuError):
detail = "proofs could not be verified"
code = 10003
def __init__(self, detail: Optional[str] = None, code: Optional[int] = None):
super().__init__(detail or self.detail, code=code or self.code)
class TransactionError(CashuError):
detail = "transaction error"
code = 11000
def __init__(self, detail: Optional[str] = None, code: Optional[int] = None):
super().__init__(detail or self.detail, code=code or self.code)
class TokenAlreadySpentError(TransactionError):
detail = "Token already spent."
code = 11001
def __init__(self):
super().__init__(self.detail, code=self.code)
class TransactionNotBalancedError(TransactionError):
code = 11002
def __init__(self, detail):
super().__init__(detail, code=self.code)
class SecretTooLongError(TransactionError):
code = 11003
def __init__(self, detail="secret too long"):
super().__init__(detail, code=self.code)
class NoSecretInProofsError(TransactionError):
detail = "no secret in proofs"
code = 11004
def __init__(self):
super().__init__(self.detail, code=self.code)
class TransactionUnitError(TransactionError):
code = 11005
def __init__(self, detail):
super().__init__(detail, code=self.code)
class TransactionAmountExceedsLimitError(TransactionError):
code = 11006
def __init__(self, detail):
super().__init__(detail, code=self.code)
class KeysetError(CashuError):
detail = "keyset error"
code = 12000
def __init__(self, detail: Optional[str] = None, code: Optional[int] = None):
super().__init__(detail or self.detail, code=code or self.code)
class KeysetNotFoundError(KeysetError):
detail = "keyset not found"
code = 12001
def __init__(self, keyset_id: Optional[str] = None):
if keyset_id:
self.detail = f"{self.detail}: {keyset_id}"
super().__init__(self.detail, code=self.code)
class LightningError(CashuError):
detail = "Lightning error"
code = 20000
def __init__(self, detail: Optional[str] = None, code: Optional[int] = None):
super().__init__(detail or self.detail, code=code or self.code)
class QuoteNotPaidError(CashuError):
detail = "quote not paid"
code = 20001
def __init__(self):
super().__init__(self.detail, code=2001)
class QuoteSignatureInvalidError(CashuError):
detail = "Signature for mint request invalid"
code = 20008
def __init__(self):
super().__init__(self.detail, code=20008)
class QuoteRequiresPubkeyError(CashuError):
detail = "Pubkey required for mint quote"
code = 20009
def __init__(self):
super().__init__(self.detail, code=20009)