Source code for worldline.connect.sdk.v1.declined_transaction_exception

#
# This class was auto-generated from the API references found at
# https://apireference.connect.worldline-solutions.com/
#
from typing import List, Optional

from .api_exception import ApiException
from worldline.connect.sdk.v1.domain.api_error import APIError


[docs] class DeclinedTransactionException(ApiException): """ Represents an error response from a create payment, payout or refund call. """ def __init__(self, status_code: int, response_body: str, error_id: Optional[str], errors: Optional[List[APIError]], message: Optional[str] = None): if message: super(DeclinedTransactionException, self).__init__(status_code, response_body, error_id, errors, message) else: super(DeclinedTransactionException, self).__init__(status_code, response_body, error_id, errors)