Skip to content

Commit

Permalink
update error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Lh4cKg committed Jul 18, 2020
1 parent 5fe8ff0 commit 8afd81a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions geopayment/providers/tbc/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def description(self) -> str:
:return: merchant description
"""
raise NotImplementedError(
'Merchant needs implement `description` function'
'Provider needs implement `description` function'
)

@property
Expand All @@ -31,7 +31,7 @@ def client_ip(self) -> str:
:return:
"""
raise NotImplementedError(
'Merchant needs implement `client_ip` function'
'Provider needs implement `client_ip` function'
)

@property
Expand All @@ -41,7 +41,7 @@ def cert(self) -> Tuple[str, str]:
:return: certificate as tuple (cert, key)
"""
raise NotImplementedError(
'Merchant needs implement `cert` function'
'Provider needs implement `cert` function'
)

@property
Expand All @@ -51,7 +51,7 @@ def merchant_url(self) -> str:
:return: merchant service url
"""
raise NotImplementedError(
'Merchant needs implement `merchant_url` function'
'Provider needs implement `merchant_url` function'
)


Expand Down

0 comments on commit 8afd81a

Please sign in to comment.