Source code for worldline.acquiring.sdk.communication.communication_exception
[docs]
class CommunicationException(RuntimeError):
"""
Indicates an exception regarding the communication with the Worldline Acquiring platform such as a connection exception.
"""
def __init__(self, exception: Exception):
super(CommunicationException, self).__init__(exception)
self.cause = exception