Repository URL to install this package:
|
Version:
3.3.4 ▾
|
sincpro-payments-sdk
/
exceptions.py
|
|---|
"""Exceptions module."""
class SincproValidationError(Exception):
"""Validation error exception."""
def __init__(self, message):
self.message = message
class SincproExternalServiceError(Exception):
"""External service error exception."""
def __init__(self, message):
self.message = message