Skip to content

Commit

Permalink
refactor(py-sdk): remove unused exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
fubuloubu committed Sep 25, 2024
1 parent a560e63 commit 2167491
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions sdk/py/apepay/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,6 @@ def __init__(self):
)


class MissingCreationReceipt(ApePayException, NotImplementedError):
def __init__(self):
super().__init__("Missing creation transaction for stream. Functionality unavailabie.")


class FundsNotClaimable(ApePayException):
def __init__(self):
super().__init__("Stream has no funds left to claim.")


class TokenNotAccepted(ApePayException, ValueError):
def __init__(self, token_details: str):
super().__init__(f"Token '{token_details}' not accepted.")
Expand Down

0 comments on commit 2167491

Please sign in to comment.